你是什么数据库,不同数据库调用方法也不同,比如mysql,一般写法,
$link=mysql_connect("localhost","root","root");//连接数据库
mysql_select_db("库名");//选择库
$sql="select name,sex,age from user";
$rs=mysql_query($sql);
while($row=mysql_fetch_object($rs)){?>
你知道怎么调用数据库user表里的数据吗,把查询出的数组用while循环一下,然后在循环里