|
|
|
แก้ไขข้อมูลไม่ได้ค่ะ ใครช่วยที ใช้ php กับ access ค่ะ แล้วคือว่ามีปัญหาเรื่องแก้ไขข้อมูล ตรงหน้า editform มันก็ดึงข้อมูลเก่ามาแสดง |
|
|
|
|
|
|
|
ใช้ php กับ access ค่ะ แล้วคือว่ามีปัญหาเรื่องแก้ไขข้อมูล ตรงหน้า editform มันก็ดึงข้อมูลเก่ามาแสดง แต่พอแก้ข้อมูลแล้วคลิกแก้ไข มันไม่ยอม link ไปหน้าที่แสดงผลการแก้ไข มันยังอยู่หน้าเดิมแต่ไม่แสดงข้อมูล เป็นเพราะอะไรค่ะ code ผิดตรงไหนรึป่าว
หน้า editform
<?php
$dsn = "web_database";
$user ="";
$pass ="";
$connect = odbc_connect($dsn, $user, $pass) or die("ติดต่อ DSN ไม่ได้");
$sql = "select * from unit1 where number='$number'";
$exec = odbc_exec($connect, $sql) or die("ไม่สามารถแก้ไขข้อมูลได้");
$num = odbc_result($exec, "num");
$number = odbc_result($exec, "number");
$name = odbc_result($exec, "name");
$unit = odbc_result($exec, "unit");
$address = odbc_result($exec, "address");
echo "<B><Font size=4 color=black><h3>เรกคอร์ดของสิ่งอุปกรณ์ที่มี หมายเลข</h3></Font><Font size=4 color=red> ".$number."</Font></B>";
echo "<Font size=4>";
echo "<Form action=\"editok.php\" method=\"post\">";
echo "<Input type=\"hidden\" name=\"num\" Size=\"10\" value=\"$num\">";
echo "<Table bgcolor=#C0FDC1>";
echo "<Tr><Td>หมายเลข</Td> <Td><Input type=\"text\" name=\"number\" Size=\"30\" value=\"$number\"></Td></Tr>";
echo "<Tr><Td>ชื่อสิ่งอุปกรณ์</Td> <Td><Input type=\"text\" name=\"name\" Size=\"30\" value=\"$name\"></Td></Tr>";
echo "<Tr><Td>หน่วยนับ</Td> <Td><Input type=\"text\" name=\"unit\" Size=\"30\" value=\"$unit\"> </Td></Tr>";
echo "<Tr><Td>รายละเอียด</Td> <Td><Input type=\"File\" name=\"File\" Size=\"30\"</Td></Tr>";
echo "</Table>";
echo "<Br><Input type=\"Submit\" value=\"แก้ไข\">";
echo "</Form>";
echo "</Font>";
?>
หน้าแสดงผล
<?php
$dsn = "web_database";
$user ="";
$pass ="";
$connect = odbc_connect($dsn, $user, $pass) or die("ติดต่อ DSN ไม่ได้");
$sql = "update unit1 set num='$num', name='$name', unit='$unit', address='$address' where number='$number'";
odbc_exec($connect, $sql);
echo "<Font Size=4><B>แก้ไขข้อมูลเรียบร้อยแล้วดังนี้</B><Br>";
echo "<Font color=blue> ลำดับที่ : </Font><Font color=red>$num<Br></Font>";
echo "<Font color=blue> หมายเลข : </Font><Font color=red>$number<Br></Font>";
echo "<Font color=blue> ชื่อสิ่งอุปกรณ์ : </Font><Font color=red>$name<Br></Font>";
echo "<Font color=blue> หน่วยนับ : </Font><Font color=red>$unit<Br></Font>";
echo "<Font color=blue> รายละเอียด : </Font><Font color=red>$address<Br></Font>";
echo "<Br><A Href=\"editshow.php\"> ดูผลการเปลี่ยนแปลง/แก้ไขอีก</A>";
?>
ใครทราบช่วยหน่อยนะคะต้องแก้ยังไง ช่วยบอกที
ขอบคุณล่วงหน้าค่ะ
Tag : - - - -
|
|
|
|
|
|
Date :
2 ต.ค. 2549 16:15:37 |
By :
popo |
View :
1921 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เท่าที่ผมดูนะครับ <input type="hidden" name="num"> กับ <input type="text" name="number" อันแรกที่เป็น hidden ก็คือ ตัวที่ต้องการแก้ไข ส่วนอันสอง เป็นที่เราจะแก้เป็นอะไร
เพราะฉะนั้น หน้า editok.php ทำไมไม่ใช้ where number='$num' หล่ะครับ ถ้าใช้ $number มันก็หาไม่เจอสิครับ ว่าจะแก้ไข เรคอร์ดไหน เพราะมันยังไม่มีในฐานข้อมูลอ่ะครับ
|
|
|
|
|
Date :
2 ต.ค. 2549 22:14:57 |
By :
ผู้ไม่ประสงค์นาม |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองทำแบบที่คุณบอกแล้วหน้า editform มันไม่มีข้อมูลเก่าขึ้นเลยค่ะ เลยใช้เป็น where num='$num' <Input type=\"hidden\" name=\"num\" Size=\"10\" value=\"$num\">
แล้วพอแก้ไขข้อมูลแล้วคลิกแก้ไขมันก็ยังอยู่หน้าเดิมแต่มีข้อมูลเก่าค่ะ เป็นเพราะอะไรเหรอคะ จะต้องแก้ยังไงดี
|
|
|
|
|
Date :
3 ต.ค. 2549 11:35:21 |
By :
popo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|