2017-04-11 82 views
0

鏈接,我想每一個學生的名字從名單的學生與有個人資料頁我都試過,但它不工作任何一個可以解決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> 

這是學生的個人資料頁面的代碼。

​​
+0

左連接? 'SELECT * FROM學生留在studet_profile.id = student.id' –

+0

加入student_profile但我從同桌 –

+0

獲取數據,其中文件應該ID應用此查詢 –

回答

0

「。$ res [」name「]」。「到「。$ r [」name「]。」

0

可以說你的鏈接到個人資料頁面看起來像這樣

/profile.php?id=32

在您的個人資料頁(profile.php)

您檢索使用$_GET

<?php 

    function std_table_profile($student_id){ 
    // your query...WHERE id='".$student_id."'"... 
    return $result; 
    } 
    $id = $_GET['id']; 
    $student_data = std_table_profile($id); 
    print_r($student_data); 

如果您使用路由器ID你需要preg_match你的uri

相關問題