帮忙看看一下数据库连接的错误!!!
$connid=@mysql_connect("localhost","root","Admin","test");
$sql="select pic from $table where id=$id";
$result=mysql_db_query("photo",$sql);
$image=mysql_result($result,0,"pic");
echo $image;
?>
和
if($offset == "")
{$offset = 0;}
$Connid = @mysql_connect("localhost","root","Admin","test");
$sql = "select id,name from photo order by id desc limit $offset,6";
$result = mysql_db_query("photo",$sql);
$num = mysql_num_rows($result);
if($num != 0)
{
$i = 0;
while($r = mysql_fetch_array($result))
{
$id = $r["id"];
$ftitle = $r["name"];
if($i == 0 or $i == 3)
{
echo "
}
echo "
echo "";
echo "show.php?table=photo&id=$fid";
echo "height=60>";
echo "";
echo "
$ftitle
婚纱影楼小程序提供了一个连接用户与影楼的平台,相当于影楼在微信的官网。它能帮助影楼展示拍摄实力,记录访客数据,宣传优惠活动。使用频率高,方便传播,是影楼在微信端宣传营销的得力助手。功能特点:样片页是影楼展示优秀摄影样片提供给用户欣赏并且吸引客户的。套系页是影楼根据市场需求推出的不同套餐,用户可以按照自己的喜好预定套系。个人中心可以查看用户预约的拍摄计划,也可以获取到影楼的联系方式。
if($i == 2 or $i == 5)
{echo "
}
}
?>
------解决方案--------------------
都是由于mysql_db_query的执行结果出错的原因
检测mysql_connect("localhost","root","Admin","test"); 是不是有错,把@去掉。
还有就是执行的sql出错的可能性比较大。
------解决方案--------------------
$Connid = mysql_connect("localhost","root","Admin");
mysql_select_db("photo");
$sql = "select id,name from photo order by id desc limit $offset,6";
$result = mysql_query($sql);
$num = mysql_num_rows($result);
这样看看。









