$cate = $_REQUEST['cate'];
$fromdate = $_REQUEST['from'];
$to = $_REQUEST['to'];
$ascend = $_REQUEST['ascend'];
說明:未定義指數:美食在 說明:未定義指數:從在 說明:未定義指數:在 說明:未定義指數:登在未定義索引錯誤
$limit = 10;
$page = $_GET['page'];
if($page)
$start = ($page - 1) * $limit;
else
$start = 0;
注意:未定義的索引:在$ page = $ _GET ['page'];
獲得這些通知,但有時它會消失。有什麼不對嗎? * 頂部部分解決 *
現在越來越不確定變量以下行
if ($cate!='')
if ($fromdate !='' && $to!=''){
if ($ascend!=''){
未定義的變量:美食 未定義的變量:沒有fromdate 未定義的變量:提升
您需要檢查索引是否存在'isset($ _ GET ['page'])',總是。 –