php怎么能把数据库里的数据自动调用到网页上显示出来
怎么能把数据库的数据在打开主页的时候就自动显示出来就像招聘网下面招聘信息一样还要有位置的设置...
怎么能把数据库的数据在打开主页的时候就自动显示出来 就像招聘网 下面招聘信息一样 还要有位置的设置
展开
1个回答
推荐于2017-12-16 · 知道合伙人互联网行家
关注
展开全部
mysql_select_db($database);
要是
<?php
$con = mysql_connect("localhost","root","");mysql_select_db($sql);
$result=mysql_query('select name from tag_cate where id=3');mysql_close($con);
?>
还是无内容显示咋办?sql是数据库名。
则
<?php
$con = mysql_connect("localhost","root","");mysql_select_db($sql);
//$result是记过集好不好,还有你的输出呢?echo?
$result=mysql_query('select name from tag_cate where id=3') or die('ERROR : '.mysql_error());if($result){
if (mysql_num_rows($result) == 0) {
while($row = mysql_fetch_assoc($result)){echo $row['name'].'';
}
}
mysql_free_result($result);
}
mysql_close($con);
要是
<?php
$con = mysql_connect("localhost","root","");mysql_select_db($sql);
$result=mysql_query('select name from tag_cate where id=3');mysql_close($con);
?>
还是无内容显示咋办?sql是数据库名。
则
<?php
$con = mysql_connect("localhost","root","");mysql_select_db($sql);
//$result是记过集好不好,还有你的输出呢?echo?
$result=mysql_query('select name from tag_cate where id=3') or die('ERROR : '.mysql_error());if($result){
if (mysql_num_rows($result) == 0) {
while($row = mysql_fetch_assoc($result)){echo $row['name'].'';
}
}
mysql_free_result($result);
}
mysql_close($con);
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询