鏈接,我想每一個學生的名字從名單的學生與有個人資料頁我都試過,但它不工作任何一個可以解決this.Thanks提前聯繫起來。我試圖我的學生名單與有個人資料頁
這是學生名單代碼,我將數據發送到刪除列表,從任何學生刪除頁面,我也想,如果我要檢查有配置文件與有配置文件關聯起來有名字。
<form action="php\student_list_delete.php" method="POST">
<table id="table_style" border="1px" align="center">
<tr>
<td colspan="6" style="border-right: none; border-bottom: none;">
<h2>Student Information List</h2><b>Dempartment of Computer Sceince</b>
</td>
<td style="border-left: none; border-bottom: none;"><img src="images/logo.png" width="80px" height="80px"></td>
</tr>
<!-- ============= Student Information List header Start here ============= -->
<?php
std_list_header();
?>
<!-- ================= Student Information List header End here ================ -->
<tr class="table_header" >
<th width="50px">S/N</th>
<th>Name</th>
<th>F/Name</th>
<th>Session</th>
<th>Semister</th>
<th>Phone</th>
<th>Delete</th>
</tr>
<!-- ================= Student Information List body Start here ================ -->
<?php
$query="SELECT id,name,fname,phone FROM student";
$resultset=$connection->query($query);
$count=0;
while($r=$resultset->fetch_assoc()){
$count++;
echo "<tr><td>".$count."</td><td><a href='".$r["id"]."'>".$r["name"]."</a></td><td>".$r["fname"]."</td><td></td><td><td>".$r["phone"]."</td><td><input type='checkbox' name='chb".$count."' value='".$r["id"]."'></td></tr>
";
}
?>
<!-- ================= Student Information List body End here ================ -->
<tr>
<td colspan="7" align="right"><input type="submit" value="Delete"></td>
</tr>
</table >
</form>
這是學生的個人資料頁面的代碼。
左連接? 'SELECT * FROM學生留在studet_profile.id = student.id' –
加入student_profile但我從同桌 –
獲取數據,其中文件應該ID應用此查詢 –