Home  >  Article  >  php教程  >  帮忙看下为何不能转到

帮忙看下为何不能转到

WBOY
WBOYOriginal
2016-06-06 19:42:49731browse

帮忙看下为啥不能转到 $sql="select*fromtb_orderwhereorderusernc='$unc'orderbyiddesclimit$kaishi,$pagesize";//取得记录从计算出的初始值开始,一共$pagesize条 $result=mysql_query($sql);//取得结果 while($row=mysql_fetch_array($result)) { echo"tr\

帮忙看下为啥不能转到
$sql="select * from tb_order where orderusernc='$unc' order by id desc limit $kaishi,$pagesize";//取得记录从计算出的初始值开始,一共$pagesize条
$result=mysql_query($sql);//取得结果
while($row=mysql_fetch_array($result))
{
echo "\n"; 
echo "
".$row['orderno']."
";
echo "
".$row['orderusernc']."
";
echo "
".$row['username']."
";
echo "
".$row['address']."
";
echo "
".$row['yb']."
";
echo "
".$row['tel']."
";
echo "
".$【本文来自鸿网互联 (http://www.68idc.cn)】row['tt']."
";
echo "
".$row['goodsprice']."
";
echo "
".$row['rectype']."
";
echo "
".$row['paytype']."
";
echo "
".$row['addtime']."
";
echo "
付款
";
echo "\n"; 
}
点付款依然还在该页面
------解决思路----------------------
echo "
付款
";

改为只留下这句看看。估计你之前的echo html有问题。单引和双引冲突了。
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn