資源簡介
代碼片段和文件信息
ta?http-equiv=“content-type“content=“text/html?charset=utf-8“>
tle>會員信息列表 tle>
//顯示所有用戶的信息(表格)查詢數據,在數據庫
$conn=mysql_connect(“localhost““root““root“);
if(!$conn)
{
die(“連接失敗“.mysql_errno());
}
mysql_query(“set?names?utf8“$conn)?or?die(mysql_errno());
mysql_select_db(“empmanage“$conn)?or?die(mysql_errno());
$sql=“select?*?from?emp;“;
$result?=?mysql_query($sql$conn);
??while($row?=?mysql_fetch_array($result)){??
??print_r($row);?
??echo?“
“;?
}??
mysql_close($conn);
?>