Home >Backend Development >PHP Tutorial >帮忙看下为啥不能转到

帮忙看下为啥不能转到

WBOY
WBOYOriginal
2016-06-23 13:26:40908browse

$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 "
".$row['tt']."
";
echo "
".$row['goodsprice']."
";
echo "
".$row['rectype']."
";
echo "
".$row['paytype']."
";
echo "
".$row['addtime']."
";
echo "
付款
";
echo "\n"; 
}
点付款依然还在该页面


回复讨论(解决方案)

$sql="select * from tb_order where orderusernc=' $unc' order by id desc limit $kaishi,$pagesize";
查询需要参数 $unc

页面中只有这样的连接
echo "

付款
";

并无只是分页的参数

$unc我定义了的 循环的内容和分页都能用
// 全部产品

// 连接数据库
require_once 'conn.php';
session_start();
$unc=$_SESSION['unc'];
$orderno=$_GET[orderno];  
$sql="select * from tb_order";
$result=mysql_query($sql);//取得结果
$num=mysql_num_rows($result);
$pagesize=5;//设定每页的记录数
$pages=ceil($num/$pagesize);//取得总页数
if($pages $page=$_GET[page];//取得传递过来的页数
if($page>$pages){$page=$pages;}//如果传递过来的页数比总页数还大,就让它等于总页数
if($page $kaishi=($page-1)*$pagesize;//为下一步做准备,limit的初始记

主要还是echo "

付款
";有没有问题  这里不用分页参数把 我转到的页面用不到啊

好嘛!用不到的你都贴了,要用到的你却不贴

哪些有用啊 这页面的代码都在了啊

看楼主的单引号和双引号看的好头晕  
 要不你试试这样的?
echo '

付款
';

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