我的代码从数据库中检索一些值并显示在表格中。在每一行之前,我都放置了一个复选框,以便在选中该值时可以将其存储在数据库中。每行包含四列。它可能会检索几行。如果我选择几行,那么这些行应该存储到数据库中。
<table border='0' align="center">
<tr class="db_table_tr3" >
<th class="db_table_th3" > </th>
<th class="db_table_th3" >Course Code</th>
<th class="db_table_th3" >Course Name</th>
<th class="db_table_th3" >Instructor</th>
<th class="db_table_th3" >Credit</th>
</tr>
<?php
$query = "select *from course_details WHERE branch='$branch' AND sem='$sem'";
$run = mysql_query($query) or die($query."<br/><br/>".mysql_error());
$num = mysql_numrows($run);
while($row = mysql_fetch_assoc($run)){
echo "<tr >";
echo '<td><input type="checkbox" name="ticked[]" value="' . $row['course_codes'] . '"></td>';
// echo "<td>" . $row['usn'] . "</a>" . "</td>";
echo "<td>" . $row['course_codes'] . " </td>";
echo "<td>" . $row['course_names'] . " </td>";
echo "<td>" . $row['course_instructors'] . " </td>";
echo "<td>" . $row['course_credits'] . " </td>";
}
echo "</tr>";
现在我想按如下方式存储第一列
$ch1=$_POST['ticked'];
if(isset($_POST['submit'])){
for($i=0; $i<sizeof(ch1); $i++){
here is the query
}
}
上面的代码是否正确。如何将所有列的值存储在不同的表中。