日期:2014-05-17  浏览次数:20461 次

PHP循环显示数据库内容
谁帮我写个PHP循环显示数据库内容的代码。。
主机LOCALHOST
用户root
密码<空>
表test
字段acc


把这个字段里的内容用表格显示出来的代码。

------解决方案--------------------
PHP code


$link=mysql_connect("localhost","root") or die("fail".mysql_error());
mysql_select_db('first',$link) or die('faill'.mysql_error()); 
$query_pag_data = "SELECT acc from test";

$result_pag_data = mysql_query($query_pag_data) or die('MySql Error' . mysql_error());

while ($row = mysql_fetch_array($result_pag_data)) 
{
 //在这里使用$row['acc'] 
}