首页上一页 1 下一页尾页 5 条记录 1/1页
请老师看看这几行代码,已经有一个数组了,但转换不了字符串,输出字串变空值是怎么回事?谢谢
发表在PHP图书答疑
2014-11-24
是否精华
是
否
版块置顶:
是
否
$con = mysql_connect("localhost", "root", "123");//服务器连接
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
$db_selected = mysql_select_db("db_counter", $con);//选择数据库
mysql_query("set names gb2312");//防止中文内容乱码
$sql = "select counts from tb_count10 where data2='2008-04' order by data1";//查询数据表的数据
$result = mysql_query($sql,$con);//返回数据
//$result = mysql_query($sql);//返回数据
echo mysql_result($result,0);//本行和下一行都能输出数值
echo mysql_result($result,2);
while($myrow=mysql_fetch_array($result))
{
[font color=#00FF00][font color=#0000FF]$result[]=current($myrow);//提示本行和下一行出错
$lmbs=implode(",",$result); [/font][/font]
}
[font size=3][font color=#FF0000]echo $lmbs;//这里输出变空值?请问是怎回事?[/font][/font]
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
$db_selected = mysql_select_db("db_counter", $con);//选择数据库
mysql_query("set names gb2312");//防止中文内容乱码
$sql = "select counts from tb_count10 where data2='2008-04' order by data1";//查询数据表的数据
$result = mysql_query($sql,$con);//返回数据
//$result = mysql_query($sql);//返回数据
echo mysql_result($result,0);//本行和下一行都能输出数值
echo mysql_result($result,2);
while($myrow=mysql_fetch_array($result))
{
[font color=#00FF00][font color=#0000FF]$result[]=current($myrow);//提示本行和下一行出错
$lmbs=implode(",",$result); [/font][/font]
}
[font size=3][font color=#FF0000]echo $lmbs;//这里输出变空值?请问是怎回事?[/font][/font]