我在PHP中使用会话。在两个页面的顶部,我做了一个session_start();在其他任何事情之前。
稍后,从用于使用信息填充页面的数据库中提取信息。现在我只使用20种不同的物品。第一页遍历数据库并提供我期望的输出。选择图像后,它会转到另一个页面,该页面应该包含有关该对象的更多信息。问题是,新页面始终显示数据库中的最后一个对象。我会发布相关代码,并希望有人可以指出我的失败。
<?php
//initial page with list of objects
session_start();
$_SESSION['listingID'] = $listingID;
?>
<!DOCTYPE HTML>
<html>
<head>
<title>Some Title</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="main.css" />
</head>
<body>
<!-- Wrapper -->
<div id="wrapper">
<!-- Header -->
<header id="header">
<h1><a href="#" target="__blank">Some H1 that works fine</h1>
<nav>
<ul>
<li><a href="#" target="__blank">Some link</a></li>
</ul>
</nav>
</header>
</div>
</body>
</html>
<?php
try {
$dbh = new PDO("mysql:host=$dbservername;dbname=$dbname", $dbusername, $dbpassword);
//echo "Connection is successful!<br/>";
$sql = "SELECT * FROM $tablename";
$users = $dbh->query($sql);
foreach ($users as $row) {
extract($row);
$_SESSION['listingID'] = $listingID;
echo "THIS IS listingID ". $listingID;
echo '<div id="main" style="margin-bottom: 2em;">';
echo '<article class="thumb">';
echo '<a href="lake_full.php?'.$listingID.'" class="image"><img style="width:100%;height:100%;" src="' . $image . '" /></a>';
echo "<h2>$address</br>$city, $state $zip</br>$$asking_price</h2>";
echo '</article>';
echo '</div>';
} // end foreach
$dbh = null;
}
catch (PDOexception $e) {
echo "Error is: " . $e-> etmessage();
}
?>
以下代码是我在新页面上使用的代码,它应该带来'id'或与第一页上所选图像相关联的内容。
<?php
//lake_full.php
session_start();
$listingID = $_SESSION['listingID'];
echo "ID IS ".$listingID;
?>
<!DOCTYPE HTML>
<html>
<head>
<title>Some Title</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="main.css" />
</head>
<body>
<!-- Wrapper -->
<div id="wrapper">
<!-- Header -->
<header id="header">
<h1><a href="#">Some H1</h1>
<nav>
<ul>
<li><a href="#" target="__blank" class="icon fa-info-circle">Some Link</a></li>
</ul>
</nav>
</header>
</body>
</html>
<?php
try {
$dbh = new PDO("mysql:host=$dbservername;dbname=$dbname", $dbusername, $dbpassword);
//echo "Connection is successful!<br/>";
$sql = "SELECT listingID FROM $tablename";
$users = $dbh->query($sql);
echo "THIS ID IS ". $mls;
echo '<div id="main" style="margin-top: 2em;">';
echo '<article class="thumb">';
echo '<a href="#" class="image"><img style="width:100%;height:100%;" src="' . $image . '" /></a>';
echo "<h2>$address</br>$city, $state $zip</br>$$asking_price</h2>";
echo '</article>';
echo '</div>';
$dbh = null;
}
catch (PDOexception $e) {
echo "Error is: " . $e-> etmessage();
}
?>
答案 0 :(得分:4)
您当前正在覆盖循环的每次迭代$_SESSION['listingID']
,这意味着它始终只包含最后一项。
您应该使用查询字符串,而不是使用会话。
更改第一个文件中的以下行:
echo '<a href="lake_full.php?'.$listingID.'" class="image"><img style="width:100%;height:100%;" src="' . $image . '" /></a>';
到
echo '<a href="lake_full.php?listingID='.$listingID.'" class="image"><img style="width:100%;height:100%;" src="' . $image . '" /></a>';
现在在lake_full.php
上,您现在可以使用$_GET
- 超级全局来获取ID,而不是使用会话:
if (!isset($_GET['listingID'])) {
// If we didn't get an ID, we can't continue, so stop the script
die('Invalid listing ID');
}
$listingID = $_GET['listingID'];
// ... the rest of the code...