You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<?php
|
|
$db = mysqli_connect('localhost','root','zhang09820');
|
|
|
|
if(!$db){
|
|
die("connect error: ".mysqli_error($db));
|
|
}
|
|
|
|
mysqli_select_db($db, 'pxscj');
|
|
mysqli_set_charset($db, 'utf8');
|
|
?>
|