我收到错误: 注意:未定义的索引:p,page,srt和where
// set default pagenation values
if(!$_GET['p']) $_GET['p'] = $conf['perpage']; // default number of entries per page
if(!$_GET['page']) $_GET['page'] = 1; // current page
if(!$_GET['srt']) $_GET['srt'] = $conf['srt']; // default sort order
$start = ($_GET['page'] - 1) * $_GET['p']; // start row for query
// get total number of entries for pagenation
$result = mysql_query("SELECT COUNT(*) FROM articals $where", $link);
$total = mysql_fetch_array($result); $total = $total[0]; // total number of listings
$pages = ceil($total / $_GET['p']); // number of pages
还有: 注意:未定义的索引:类别,说明,型号,条件,位置,照片,精选内容和
$_GET = safe_data($_GET, 'query');
if($_GET['category']) $where .= "AND (category='$_GET[category]' OR category2='$_GET[category]') ";
if($_GET['description']) $where .= "AND description LIKE '%$_GET[description]%' ";
if($_GET['model']) $where .= "AND model LIKE '%$_GET[model]%' ";
if($_GET['cond']) $where .= "AND cond='$_GET[cond]' ";
if($_GET['location']) $where .= "AND location='$_GET[location]' ";
if($_GET['photos']) $where .= "AND images>'0' ";
if($_GET['featured']) $where .= "AND featured='1' ";
// finialize query string if necessary
if(substr($where, 0, 3) == 'AND') {
$where = ltrim($where, 'AND');
$where = 'WHERE'.$where;
}
// do not show hidden and expired listings
$display = "hide!='1' AND (expire>'".time()."' OR expire='' OR expire='0') AND (user_expire>'".time()."' OR user_expire='' OR user_expire='0')";
$display = "hide!='1'";
if(!$where) $where = "WHERE ".$display;
else $where .= "AND ".$display;
请帮忙吗?
答案 0 :(得分:0)
你必须在每个获取请求周围包裹isset()
以消除通知。
显示通知是因为它们没有价值。
您可以像这样使用它:if(isset($_GET['p']))
答案 1 :(得分:0)
此代码可能对您有所帮助,它包装了http php响应:
class Input {
public static function Post($item,$default=null){
//If the value was posted, then return that value, else return the $default value.
return isset($_POST[$item]) ? $_POST[$item] : $default;
}
public static function Get($item,$default=null){
return isset($_GET[$item]) ? $_GET[$item] : $default;
}
public static function Cookie($item,$default=null){
return isset($_COOKIE[$item]) ? $_COOKIE[$item] : $default;
}
public static function Param($item,$default=null){
return self::Post($item) ?: self::Get($item) ?: self::Cookie($item) ?: $default;
}
}
用法:
Input::Get('p',$conf['perpage']); // First argument is the index, second is default if not set.
在你的例子中:
$p = Input::Get('p',$conf['perpage']);
$page = Input::Get('page',1);
$srt= Input::Get('page',$conf['srt']);
$start = ($page - 1) *$p; // start row for query
答案 2 :(得分:-2)
在您的网址中,您是否有http://www.yoursite.com/yourpage.php?p=XXX&page=YYYY&srt=ZZZZ等参数?
如果这些参数是可选的,请使用:
if (!isset($_GET["p"])) $_GET["p"] = $conf["perpage"];
但实际上,更好的做法是不要自己分配$ _GET。相反,设置变量并稍后使用它而不是使用$ _GET内容:
$p = (isset($_GET["p"])?$_GET["p"]:$conf["perpage"]);
如果您在htaccess中进行重定向,请确保使用[QSA]转发GET参数。