首先,我想提前感谢您花时间帮助我。 我正在通过多个单选按钮向我的学校出示表格。学生和 他们的课程在数据库中,当老师选择课程时,请说第7课 然后所有学生的7级学生名称填充为表格中的列表。除了每个学生的名字,还有三个单选按钮可供选择。这些价值将被接受,不被接受,以及迟到。 为了弹出学生我使用Java功能如下:(在W3school中找到)第一页。 让我们说populate.php
<html>
<head>
<script type="text/javascript">
function showUser(str)
{
if (str=="")
{
document.getElementById("txtHint").innerHTML="";
return;
}
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("txtHint").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","getuser.php?q="+str,true);
xmlhttp.send();
}
</script>
</head>
<body>
<form>
<select name="users" onchange="showUser(this.value)">
<option value="">Select a class:</option>
<?php
getClasses();
?>
</select>
</form>
<br />
</body>
</html>
<?php
//第二页将是offcourse users.php,如下所示:
$q=$_GET["q"];
$sql = "SELECT s.firstname, s.lastname, s.student_id, s.class_id, cl.class_id ".
" FROM students s ".
" INNER JOIN classes cl ON cl.class_id = s.class_id ".
" WHERE s.class_id =$q ";
$result = mysql_query($sql);
print '<table border="2">'.
'<tr>'.
'<th>Firstname</th>'.
'<th>Lastname</th>'.
'<th>Kind of absence</th>'.
'</tr>';
while($row = mysql_fetch_array($result))
{
print '<tr>'.
'<td>'.$row['firstname'].'</td>'.
'<td>'. $row['lastname'] . '</td>'.
'<td>'.
'<form method="post" action="getuser.php">'.
'<input type="radio" name="attendance[]"
value="1">Accepted</input>'.
'<input type="radio" name="attendance[]" value="2"> Not
accepted</input>'.
'<input type="radio" name="attendance[]" value="3"> Tardy</input>'.
'</form>'.
'</td>'.
'</tr>';
}
print '<tr>'.
'<td>'.
'<form method="post" action="getuser.php">'.
'<input type="submit" name="submit" value="Send">  '.
'</form>'.
'</td>'.
//我不知道在哪里提交提交按钮。
print '</table>';
//我想要的是获取单选按钮的所有值并将它们插入数据库。
if (isset($_REQUEST['submit']) && $_REQUEST['submit'] != "") {
if(isset($_POST['attendance']))
{
$atendance = $_POST['attendance'];
for ($i=0; $i<sizeof($attendance);$i++) {
//我不知道如何,但我知道我必须在数组中收集student_id也可能在这里
$sql2 = " INSERT INTO absence (student_id, attendans_id ) ".
" VALUES (".$student_id.", '".$attendance[$i]."') ";
mysql_query($sql2) or die(mysql_error());
}
}
}
//亲爱的PHP爱好者......我知道我做错了但我不知道如何解决这个问题 问题,如果你能帮助我,我会很高兴。提前再次感谢您。每个学生都会有三个单选按钮来选择。我的意思是在每个名字旁边都会有三个替代选择......每个学生都有三个单选按钮,接受价值,不接受和迟到。
&GT;
答案 0 :(得分:-1)
html代码
<form action="getStudents.php" method="POST >
<input type="radio" name="class" value="7" />Class 7</input>
<input type="radio" name="class" value="8" />Class 8</input>
<input type="submit" value="SUBMIT"/>
</form>
PHP代码
$class = $_POST['class'];
sql query = "select * from class where class.number={$class}";
<table >
<thead><th>First Name</th><th>Middle name</th><th>Last name</th></thead>
<tbody>
foreach ($query as $x)
{
<tr><td>$x->firstnamel</td><td>$x->middlename</td><td>$x->lastname</td></tr>
}
</tbody>
</table>