我在mysqli的新手准备好了,我将我所有的mysqli转换为mysqli准备好了。
我想获取特定数据的ID,我可以轻松地在mysqli中执行此操作。这是我的旧代码:
echo "<th>".$record['first_name']."</th>";
echo "<th>".$record['middle_name']."</th>";
echo "<th>".$record['last_name']."</th>";
echo "<th>".$record['date_added']."</th>";
echo "<th>".$record['crew_status']."</th>";
echo "<th><a target='_blank' href='review.php?id={$record['id']}'>Click</a></th>";
echo '</tr>';
并在mysqli准备中,这是我的代码:
while($record = mysqli_stmt_fetch($stmt)) {
echo "<tr>";
echo "<th>".sprintf("%s", $col2)."</th>";
echo "<th>".sprintf("%s", $col3)."</th>";
echo "<th>".sprintf("%s", $col4)."</th>";
echo "<th>".sprintf("%s", $col18)."</th>";
echo "<th>".sprintf("%s", $col19)."</th>";
echo "<th><a target='_blank' href='review.php?id=$rows[] = $col1'>Click</a></th>";
echo '</tr>';
下面是我的整个代码:
$search = 'PENDING';
$query = "SELECT * FROM `crew_info` WHERE `crew_status` = ?";
$stmt = mysqli_prepare($conn, $query);
mysqli_stmt_bind_param($stmt, 's', $search);
mysqli_stmt_execute($stmt);
mysqli_stmt_bind_result($stmt, $col1, $col2, $col3, $col4, $col5, $col6, $col7, $col8, $col9, $col10, $col11, $col12, $col213, $col14, $col15, $col16, $col17, $col18, $col19);
echo '<!DOCTYPE html>
<html>
<head>
<title>All Crew</title>
</head>
<body>
<form method="POST">
<table border="2" align="center" width="600" cellspacing="3" cellpadding="4">
<tr>
<th>First Name</th>
<th>Middle Name</th>
<th>Last Name</th>
<th>Date Added</th>
<th>Status</th>
<th>REVIEW</th>
</tr>
<tr>';
$rows = array();
while($record = mysqli_stmt_fetch($stmt)) {
echo "<tr>";
echo "<th>".sprintf("%s", $col2)."</th>";
echo "<th>".sprintf("%s", $col3)."</th>";
echo "<th>".sprintf("%s", $col4)."</th>";
echo "<th>".sprintf("%s", $col18)."</th>";
echo "<th>".sprintf("%s", $col19)."</th>";
echo "<th><a target='_blank' href='review.php?id=$rows[] = $col1'>Click</a></th>";
echo '</tr>';
}
echo '</table>
</form>
</body>
</html>';
答案 0 :(得分:0)
改为使用
$rows[] = $col1
为什么不将它改为$ col1?删除$ rows []
更改您的代码:
echo "<th><a target='_blank' href='review.php?id=$rows[] = $col1'>Click</a></th>";
到这个
echo "<th><a target='_blank' href='review.php?id=$col1'>Click</a></th>";