|
|
|
ขอโค๊ดลบตารางที่เชื่อมกันด้วยค่ะ ทำไม่ได้แล้วจิงๆๆ |
|
|
|
|
|
|
|
ขอโค๊ดลบตารางที่เชื่อมกัน
หน้าแสดงข้อมูล ต้องการลบแค่สมาชิกทำไงดี
โค๊ดหน้านี้
<?php
require('conn_mysql.php');
$query="SELECT a.tg_id,a.tg_name,a.tg_detail,b.t_name From teachergroup a, teachers b,tg_detail c where b.t_id = c.t_id and a.tg_id=c.tg_id";
$result=mysql_query($query)or die("Query failed");
if(mysql_num_rows($result)==0){
echo "Nothing to Display!";
}
$bgcolor = "#E0E0E0";
print"<table border=1>\n";
echo"<tr><th>ID</th><th>ชื่อกลุ่ม</th><th>รายละเอียดกลุ่ม</th><th>ชื่ออาจารย์ในกลุ่ม</th></tr>";
while($row = mysql_fetch_array($result)){
if($bgcolor =="#FFFFFF"){
$bgcolor= "#FFFFFF";
}else{
$bgcolor="#FFFFFF";
}
echo"<tr bgcolor=",$bgcolor,">";
echo"<td>",$row["tg_id"],"</td>\n";
echo"<td>",$row["tg_name"],"</td>\n";
echo"<td>",$row["tg_detail"],"</td>\n";
echo"<td>",$row["t_name"],"</td>\n";
$tg_id=$row["tg_id"];
echo"<td><a href=\"edit_group.php?tg_id=$tg_id\">Edit</a></td>\n";
echo"<td><a href=\"del_group.php?tg_id= $tg_id \" onclick=\"return confirm('ยืนยันการลบข้อมูล?')\">Delete</a></td>\n";
echo"\t</tr>\n";
}
echo"</table>\n";
echo"จำนวนข้อมูลทั้งหมด :",mysql_num_rows($result),"รายการ<br>";
echo"<a href=\"Group_T.php?\">Insert</a>\n";
mysql_free_result($result);
mysql_close($conn);
?>
โค๊ดลบของหน้านี้มันลบเป็นกลุ่มอยากลบแค่สมาชิกเขียนยังไงค่ะ
<?php
$tg_id= $_REQUEST['tg_id'];
$t_id= $_REQUEST['t_id'];
require('conn_mysql.php');
$sql ="DELETE FROM tg_detail where tg_id='$tg_id' and t_id ='$t_id'";
$result=mysql_db_query($dbname,$sql);
echo $sql;
if(mysql_query($sql,$conn)) {
echo"Record deleted!";
echo"<html><head><META HTTP-EQUIV=Refresh CONTENT=\"0";
echo";URL=show_group.php\">";
}else{
echo"Error : " , mysql_error();
}
mysql_close($conn);
?>
ฐานข้อมูล
techer
Group
tg_detail
Tag : - - - -
|
|
|
|
|
|
Date :
2010-02-01 09:41:14 |
By :
Pecll |
View :
1192 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลบด้วย t_id
|
|
|
|
|
Date :
2010-02-02 01:26:48 |
By :
onedan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
น่าจะอธิบายให้ละเอียดกว่านี้นะค่ะ อ่านแล้วไม่ค่อยเข้าใจค่ะ
|
|
|
|
|
Date :
2010-02-02 01:31:15 |
By :
doraemonnoi |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|