|
|
|
อยากถาม เกี่ยวกับ โค้ดครับ ..อยากสอบถาม พี่ๆ เกี่ยวกับ โค้ด คือผม ทำหน้า Edit ผ่าน ID แต่ หน้าที่ Edit Data มันไม่มาโชว ครับ |
|
|
|
|
|
|
|
ใช้ $_GET["id"] อยากรู้ว่า GET คืออะไร หาอ่านในบทเรียน
|
|
|
|
|
Date :
2013-04-20 14:57:31 |
By :
ikikkok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้าเข้าใจตรงกันคือจะเอาข้อมูลมาใส่ใน Textbox เพื่อแก้ไข
Code ก็น่าจะแบบนี้มากกว่า
Code (PHP)
include "connect.php";
$id=$_GET['id_edit'];
$sql="select * from car where id='$id' " ;
$result=mysql_db_query($dbname,$sql);
$record=mysql_fetch_array($result);
$name=$record['name'];
$locate=$record['locate'];
$timego=$record['timego'];
$typeap=$record['typeap'];
$arrive=$record['arrive'];
$wantap=$record['wantap'];
$flight=$record['flight'];
$typecar=$record['typecar'];
$driver=$record['driver']
;
|
|
|
|
|
Date :
2013-04-20 15:19:47 |
By :
tumkung_narakjung |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อ้อ id_edit ครับไม่ใช่ id เฉยๆ
|
|
|
|
|
Date :
2013-04-20 15:23:59 |
By :
ikikkok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้าไม่ใช้ Form ในการส่ง method มา ค่ามันก้อไม่มาอยู่ดี อ่า ครับ เพราะเปนการ select data ขึ้นมาโชว แล้วอ้าง ID เพื่อ ชี้ ไปยัง ID นั้นๆเพื่อ select ข้อมูล ของ ID นั้นขึ้นมาโชวและแก้ไข ผมเลย งง ว่าทำไม มันไม่ มา เพราะ ลอง echo แต่ละ statement ขึ้นมาแล้ว ไม่มีค่าเลย แต่ ID URL มันก้ออ้าง ID ถูก
|
|
|
|
|
Date :
2013-04-20 15:31:22 |
By :
bankNay |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
โอ้ว ผิดที่ single cod นี่เอง - -ได้แระครับ พี่ ขอบคุนมากครับ
|
|
|
|
|
Date :
2013-04-20 15:34:26 |
By :
bankNay |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอถามอีกครั้ง ครับ ทำไม ผมจะอับเดด เฉพาะฟิวเดียว ทำไม มันไม่บันทึกครับ
Code (PHP)
$id=$_GET['id_edit'];
$name=$record['name'];
$locate=$record['locate'];
$timego=$record['timego'];
$timeback=$record['timeback'];
$typeap=$record['typeap'];
$arrive=$record['arrive'];
$wantap=$record['wantap'];
$flight=$record['flight'];
$typecar=$record['typecar'];
$driver=$record['driver'];
include "connect.php";
$id=$_GET['id_edit'];
$sql="update car set driver='$driver' where id='$id' " ;
$result=mysql_db_query($dbname,$sql);
if ($result) {
echo "<h1>Edit Complete</h1>";
} else {
echo "<h1>Can't Edit</h1>";
}
mysql_close();
?>
|
|
|
|
|
Date :
2013-04-20 16:30:25 |
By :
bankNay |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|