大家好我试图在这个程序中构建一个简单的类考勤系统首先我从名为class1的表中获取名称值然后我试图在表名class1attendance中插入该名称和考勤。但是,当我试图提交它时,我为所有学生获得相同的价值,无论我选择第一个单选按钮,例如我有很多学生第一个学生是理查德,当我选择目前的单选按钮为理查德我现在存储在我的数据库中的其余部分学生们。这是我的代码
<?php
include('header.php');
include('mysqli_connect.php');
echo "<br> <br>";
$q = "SELECT CONCAT(first_name, ' ', last_name) AS Name FROM class1";
$r = mysqli_query($dbc, $q);
echo '<div class = "container">';
echo '
<table>
<tr class = " w3-padding w3-green w3-xlarge "> <td> Student Name </td>
<td> Absent/Present </td>
</tr>';
$attendance ;
if($_SERVER['REQUEST_METHOD'] == 'POST')
{
$attendance ;
if($_POST['attendance'] == 'present')
{
$attendance = 'present';
}
else
{
$attendance = 'absent';
}
}
while($row = mysqli_fetch_array($r))
{
$name = $row['Name'];
$q1 = "INSERT INTO class1attendance(s_id, first_name, attendance) VALUES (0, '$name', '$attendance')";
$r1 = mysqli_query($dbc, $q1);
echo '<tr>
<td>' . $name . '</td> <td>
<form method = "post" action = "">
Present <input type = "radio" name = "attendance" value = "present" class = "w3-radio">
Absent <input type = "radio" name = "attendance" value = "absent" class = "w3-radio">
</td>
<td>
<input type = "submit" name = "submit" value = "Submit Attendence" class = "w3-btn w3-green w3-round">
</td>
</tr>
</form>';;
}
echo '</div>
</table>';
?>
答案 0 :(得分:0)
您的所有单选按钮组都需要唯一的names
。
每个学生都有一个小组:“缺席”&amp; “存在”。
所以你需要做一些像
这样的事情name=" $first_name + $last_name +'attendance'"
Idk php但这就是主意。否则,您只生成一个无线电组,因此获得一个值。
____ EDIT ____
最终,您需要这样的HTML:
<table>
<!-- radio group 1 -->
<tr>
<td>
John Doe
</td>
<td>
<label for="JohnDoe0">
Absent
<input id="JohnDoe0" type="radio" name="JohnDoe_attendance" value="absent"/>
</label>
</td>
<td>
<label for="JohnDoe1">
Present
<input id="JohnDoe1" type="radio" name="JohnDoe_attendance" value="present"/>
</label>
</td>
</tr>
<!--/ end radoi group 1 -->
<!-- radio group 2 -->
<tr>
<td>
Jane Doe
</td>
<td>
<label for="JaneDoe0">
Absent
<input id="JaneDoe0" type="radio" name="JaneDoe_attendance" value="absent"/>
</label>
</td>
<td>
<label for="JaneDoe1">
Present
<input id="JaneDoe1" type="radio" name="JaneDoe_attendance" value="present"/>
</label>
</td>
</tr>
<!--/ end radoi group 2 -->
</table>
因此,为了正确接收您的值,每个无线电组的每个名称都必须是唯一的。
因此,如果您有20名学生,则您有20个独特的name
属性。每个学生都有2个单选按钮。这两个单选按钮都有这个名字。
注意:我不会在表格中放置表格。我会用CSS来格式化表单。但是,我会在表格中显示该表格的结果。