PHP新手在这里。目标是:
a)从数据库记录中动态显示预订选项(健身类)表,允许用户选择多个选项,每行都有一个复选框 - 这个位正在工作。
b)将复选框选择传递到列出确认页面上所选数据的表格。我在这里收到错误:为foreach()提供的参数无效。
c)当用户点击第二页的“确认”按钮时更新数据库。
到目前为止,研究发现this advice使用$ _GET和$ _POST来实现这一目标。
初始页面上的我的复选框代码:
echo '<form action="makebooking.php" method="get">';
echo '<td><input type="checkbox" name="class_id[]" value=' . $row['class_id'] . '</td></tr>';
foreach语句错误来自此代码,该代码在第二页上生成选项表:
//Check if the GET is set from classes.php
if (isset($_GET['class_id'])) {
// Grab the score data from the GET
foreach($_GET['class_id'] as $class_id) {
$_GET['class_id'] = $class_id;
}
}
//table header
echo '<table class="table table-bordered table-hover">';
echo '<thead><tr><th>Date</th><th>Time</th><th>Venue</th><th>Who\'s going?</th> <th>Add someone</th></tr></thead>';
//create the form
echo '<form method="post" action="' . $_SERVER['PHP_SELF'] . '">';
//Get the class IDs from the GET to use in the POST
foreach ($_GET['class_id'] as $class_id) {
$sql = "SELECT class_id, DATE_FORMAT(date, '%a, %d %b') AS new_date, DATE_FORMAT(time, '%H:%i') AS new_time, venue FROM classes WHERE class_id = '$class_id'";
$data = mysqli_query($dbc, $sql);
//---------------------------------------------------------------------------------
//get table data
while ($row = mysqli_fetch_array($data)) {
$date = $row["new_date"];
$time = $row["new_time"];
$venue = $row["venue"];
$class_id = $row["class_id"];
}
//---------------------------------------------------------------------------------
//Show a table of the selected classes
echo '<input type="hidden" name="id" value= ' . $class_id . ' />';
echo '<td>' . $date . '</td>';
echo '<td>' . $time . '</td>';
echo '<td>' . $venue . '</td>';
echo '<td>' . $username . '</td>';
echo '<td><button class="btn btn-mini" type="button"><i class="icon-user"></i><i class="icon-plus"</i></button></td></tr>';
}
echo'</table>';
// Make booking button
echo '<input type="submit" name="submit" class="btn btn-large btn-primary pull-right" value="Confirm">';
echo '</form>';
}
this pastebin处两页的完整代码。所有错误修复建议都感激不尽!
答案 0 :(得分:0)
想通了我一直在声明if / else循环中的变量使得代码的其他部分无法访问这些变量。
我还在两个表中添加了一些额外的隐藏输入数组来验证输入。这需要对类ID进行字符串到整数的转换,以便使用所选数据更新数据库。
Full fixed code is here适合任何与类似事情挣扎的人。