$ id = $ _GET [' id']

时间:2015-04-28 13:22:06

标签: php notice undefined-index

我不断收到通知 Undefined index: id 。此外,代码并没有按照它的意图去做。它应该从ItemID = ID的数据库中获取数据。但该页面最终空白。

请帮助,我该怎么办?

<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
<html xmlns='http://www.w3.org/1999/xhtml'>
<head>
  <link rel="stylesheet" href="my.css">
  <title>Search result</title></head>
<body >
<div id = "header"> <h2> Descriptions and Images</h2></div>
<div id = "main">
session_start();
include(connect.php);
 $id = isset($_GET['id']) ? $_GET['id'] : '';
//$id= $_GET['id'];
//$id = ''; 
//f( !isset( $_GET['id'])) {
   // $id = $_GET['id']; } 
//if ($id == ""){
//  echo"eree";
//}
echo $id;
$query = mysql_query('SELECT * FROM PHP_Item WHERE ItemID = "$id"');
//$row = mysql_fetch_array($query);
while ($row = mysql_fetch_array($query)){
    $Name = $row['Name'];
    $Price = $row['Price'];
    $Description = $row['Description'];
    $Image = $row['Image'];
    echo "<br /><br/>";
    echo "Name: " . $Name;
    echo "<br/>";
    echo "Price: " . $Price;
    echo "<br/>";
    echo "Description: ".$Description;
    echo "<br/>";
    echo "<img src = '".$Image."' alt = '".$Image."'></img>";
    echo"<br/><br/>";
}
?>
</div>
<div id = "footer">
<a href = "logout.php">Logout</a></div>
</html>

1 个答案:

答案 0 :(得分:2)

您忘记添加PHP标记的开头。在此处包括:

<?php //add this tag
session_start();
include(connect.php);

要显示错误,请在文件中添加ini_set:

<?php ini_set('display_errors', true); ?>

希望这能解决问题。

<强>更新

如果您未从网址参数传递id,请将$_GET替换为$_REQUEST。您也可以尝试这种方法。 $_REQUEST可以同时获得GET和POST值。

<强>脚注:

你可能可能在标题之前输出(参见下面的链接),但屏蔽了PHP在后台抛出的错误。

使用error reporting会告诉您。

如果是这种情况,那么您需要将session_start();放在代码的顶部,然后是代码的其余部分。

即:

<?php 
error_reporting(E_ALL);
ini_set('display_errors', 1);
session_start();
?>

<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
<html xmlns='http://www.w3.org/1999/xhtml'>
<head>
  <link rel="stylesheet" href="my.css">
  <title>Search result</title></head>
<body >
<div id = "header"> <h2> Descriptions and Images</h2></div>
<div id = "main">
<?php 
include(connect.php);

// rest of your code