|
|
|
รบกวนดูโค๊ดการกรอกแบบฟอร์มให้หน่อยครับ พอกด "แก้ไข" แล้วมันไม่ยอม link ไปหน้าที่เราต้องการอะครับ |
|
|
|
|
|
|
|
พอกดแก้ไขแล้วมันไปที่ edit.php ทั้งๆที่ตั้งให้ลิ้งไปที่ EMedit.php แล้วครับ
อันนี้ code ครับ
EMshow.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<?
// เชื่่อมต่อฐานข้อมูล
$host="localhost"; // กำหนด host
$username="root"; // กำหนด username
$pass_word="snsdyoona"; // กำหนด Password
$db="dbproject3"; // กำหนดชื่อฐานข้อมูล
$Conn = mysql_connect( $host,$username,$pass_word) or die ("ติดต่อฐานข้อมูลไม่ได้");// ติดต่อฐานข้อมูล
mysql_query("SET NAMES utf8",$Conn); // set กำหนดมาตราฐาน
mysql_select_db($db) or die("เลือกฐานข้อมูลไม่ได้"); // เลือกฐานข้อมูล
//--->
?>
<table width="1000" border="1" cellspacing="2" cellpadding="2">
<tr>
<td><div align="center">รหัสพนักงาน</div></td>
<td><div align="center">ชื่อพนักงาน</div></td>
<td><div align="center">ตำแหน่ง</div></td>
<td><div align="center">เงินเดือน</div></td>
<td><div align="center">แก้ไข</div></td>
</tr>
<?
$sql_show = "select * from employee";
$result_show = mysql_query($sql_show) or die(mysql_error());
while($row_show = mysql_fetch_array($result_show))
{
?>
<tr>
<td><?=$row_show['id']?></td>
<td><?=$row_show['emp_name']?></td>
<td><?=$row_show['emp_position']?></td>
<td><?=$row_show['emp_salary']?></td>
<td><div align="center"><a href="EMedit.php?edit_id=<?=$row_show[id]?>">แก้ไข</a></div></td>
</tr>
<?
}
?>
</table>
</body>
</html>
EMedit.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<?
// เชื่่อมต่อฐานข้อมูล
$host="localhost"; // กำหนด host
$username="root"; // กำหนด username
$pass_word="snsdyoona"; // กำหนด Password
$db="dbproject3"; // กำหนดชื่อฐานข้อมูล
$Conn = mysql_connect( $host,$username,$pass_word) or die ("ติดต่อฐานข้อมูลไม่ได้");// ติดต่อฐานข้อมูล
mysql_query("SET NAMES utf8",$Conn); // set กำหนดมาตราฐาน
mysql_select_db($db) or die("เลือกฐานข้อมูลไม่ได้"); // เลือกฐานข้อมูล
//--->
if($_POST['Edit'])
{
$emp_name = $_POST['emp_name'];
$emp_position = $_POST['emp_position'];
$emp_salary = $_POST['emp_salary'];
$empid = $_REQUEST['edit_id'];
// แก้ไขข้อมูล
// $sql_edit = "UPDATE INTO employee VALUES ('$customer_name','$set_ID', '$date_order' , where id = '$id') " ;
//$sql_edit = "update customer set
//customer_name = '$customer_name' , set_ID = '$set_ID' , date_order = '$date_order' , table_num = '$table_num' , sum_cost = '$sum_cost' , location = '$location' where id = '$id'";
$sql_edit = "update employee set
emp_name = '$emp_name' , emp_position = '$emp_position' , emp_salary = '$emp_salary' where empid = '$id'";
mysql_query($sql_edit) or die(mysql_error());
echo "แก้ไขข้อมูลของ $emp_name สำเร็จแล้ว";
//-->
}
//เรียกข้อมูลจาก รหัส มาแสดงใน textbox
if($_REQUEST['edit_id'] != "")
{
$id = $_REQUEST['edit_id'];
$sql_show = "select * from employee where id = '$id'";
$result_show = mysql_query($sql_show) or die(mysql_error());
$row_show = mysql_fetch_array($result_show);
}
//--->
?>
<form id="form1" name="form1" method="post" action="EMedit.php">
รหัสพนักงาน
<input name="id" type="int" id="id" value="<?=$row_show['id']?>" />
ค่าเก่า = "<?=$row_show['id']?>"
<br />
<br />
ชื่อพนักงาน
<input name="emp_name" type="text" id="emp_name" value="<?=$row_show['emp_name']?>" />
ค่าเก่า = "<?=$row_show['emp_name']?>"
<br />
<br />
ตำแหน่ง
<input name="emp_position" type="text" id="emp_position" value="<?=$row_show['emp_position']?>" />
ค่าเก่า = "<?=$row_show['emp_position']?>"
<br />
<br />
เงินเดือน
<input name="emp_salary" type="int" id="emp_salary" value="<?=$row_show['emp_salary']?>" />
ค่าเก่า = "<?=$row_show['emp_salary']?>"
<br />
<br />
<input type="submit" name="Edit" id="Edit" value="Edit" />
<input name="edit_id" type="hidden" id="edit_id" value="<?=$_REQUEST['edit_id']?>" />
<a href="EMshow.php">กลับ</a>
</form>
</body>
</html>
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2010-10-11 17:32:22 |
By :
bagilisk |
View :
796 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองดูแล้วไม่มีปัญหานะครับ
ลอง
- refresh บราวเซอร์ แบบกด ctrl+f5
- clear cache
- เปิดดู source code ผ่านบราวเซอร์ว่ามันอัพเดทรึยัง
|
|
|
|
|
Date :
2010-10-11 17:40:40 |
By :
Chavalit117 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันไม่ได้อะครับ ทำยังไงก็ยังเด้งกลับไปที่เดิมอยู่ดี
|
|
|
|
|
Date :
2010-10-11 17:48:44 |
By :
bagilisk |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|