php简易链接数据库

$conn=@mysql_connect('localhost','root','','ceshi') or die('<p>Could not connect to the database!</p>');

mysql_select_db("ceshi",$conn);

mysql_query("set names utf8");

$sql="select * from user";

$r=mysql_query($sql,$conn);

list($max_a,$max_b,$max_c) = mysql_fetch_array($r);//list可以成为一个包含元素的数组,这个数组里的元素可以和$r里的对应,这里手册已经写的很明白

while (list($id$name$salary) = mysql_fetch_row($result)) {
    echo 
" <tr>\n".
         
"  <td><a href=\"info.php?id=$id\">$name</a></td>\n".
         
"  <td>$salary</td>\n".
         
" </tr>\n";
}

你可能感兴趣的:(php简易链接数据库)