我有功能页面和details.php。
功能页面
function getDetails(){
$con = new Core();
$con->connect();
$param = $_GET['autoid'];
$sql = 'SELECT * FROM auto WHERE autoid=?';
$stmt = $con->myconn->prepare($sql);
$stmt->bind_param("i", $param);
$stmt->execute();
}
home.php:
<?php
$details = new Details();
$result = $details->showDetails();
while ($row = mysqli_fetch_assoc($result)) {
$id=$row['autoid'];
?>
<tr>
<td><?php echo '<a href="details.php?autoid='.$id.'">
<img src="data:image/jpeg;base64,'.base64_encode($row['foto'] ).'"/></a>'; ?>
</td>
</tr>
<?php }
mysqli_free_result($result);
?>
details.php:
$details = new Details();
$result = $details->getDetails();
var_dump($result);
当我在home.php时,我按下一张照片并重定向到details.php。 当我在那里时,我在我的网址中获得了ID,然后我转储了var但是返回了NULL。
因此,我在details.php中的代码不起作用:
while ($row = $result) {
<tr>
<td><?php echo $row['merk']; ?> </td>
我真的很感激一些帮助。因为我无法想象如何让它发挥作用。 所以基本上我没有在详细信息页面上显示任何内容。除了var_dump的NULL。
答案 0 :(得分:0)
您正在执行showDetails而不是getDetails? 你的函数getDetails也没有返回任何东西。我怀疑你必须执行getDetails并在函数中放一个返回函数才能使它工作。
功能页面:
function getDetails(){
$con = new Core();
$con->connect();
$param = $_GET['autoid'];
$sql = 'SELECT * FROM auto WHERE autoid=?';
if(!($stmt = $con->myconn->prepare($sql))) {
echo "Prepare failed: (" . $con->myconn->errno . ") " . $con->myconn->error;
}
if(!($stmt->bind_param("i", $param))) {
echo "Binding parameters failed: (" . $stmt->errno . ") " . $stmt->error;
}
if(!($stmt->execute()) {
echo "Execute failed: (" . $stmt->errno . ") " . $stmt->error;
}
if(!($result = $stmt->get_result()) {
echo "Getting result set failed: (" . $stmt->errno . ") " . $stmt->error;
}
return $result; // added return here
}
home.php:
$details = new Details();
$result = $details->getDetails(); //Changed this to getDetails
while ($row = mysqli_fetch_assoc($result)) {
$id=$row['autoid'];
?>
<tr>
<td><?php echo '<a href="details.php?autoid='.$id.'"><img src="data:image/jpeg;base64,'.base64_encode($row['foto'] ).'"/></a>'; ?> </td>
</tr>
execute()
仅返回一个是否成功的布尔值。您需要使用get_result()
来获取查询的实际结果