|
|
|
ช่วยดูให้หน่อยครับ update ข้อมูลไม่ได้ครับ ติดตรง inform_Id ไม่มาให้ครับ ช่วยดูให้หน่อยนะครับ |
|
|
|
|
|
|
|
ติดตรง inform_Id ไม่มาให้ครับ
ตามหัวข้อครับ ไปส่ง $_GET['Inform_ID'] มันมาให้ได้
เอาหน้าส่งค่า มาดูครับ ว่าพลาดตรงไหน
|
|
|
|
|
Date :
2012-03-05 16:28:40 |
By :
mangkunzo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
$Inform_ID = $_GET['Inform_ID'];
echo "ค่าที่ส่งมา =".$Inform_ID."</br>"; // ถ้าค่าที่ได้เป็นค่าว่างให้ลองรับค่าแบบ $_POST ดูครับว่าค่ามาหรือไม่ แต่ถ้ายังไม่ได้ แสดงว่าค่านั้นไม่ได้ถูกส่งค่ามาครับ ให้ลองส่งค่ามาใหม่
mysql_connect("localhost", "root", "root");
mysql_select_db("Laundry");
mysql_query("SET NAMES UTF8");
$Cancel = 'แจ้งยกเลิก';
// ทำการส่งคำสั่ง SQL เพื่อทำการแก้ไขข้อมูล
$sqlEdit = "UPDATE inform SET Cancel = '$Cancel''";
$sqlEdit .= "WHERE Inform_ID = '".$_GET['Inform_ID']."'"; // ลองเปลี่ยนเป็น WHERE Inform_ID = '".$Inform_ID."' ";
$result = mysql_query($sqlEdit);
if ($result) {
header("location: CusCheckInform.php");
} else {
echo $sqlEdit; "Edit data failed.";
}
?>
|
|
|
|
|
Date :
2012-03-05 16:30:47 |
By :
HaKonNan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตัวที่ส่งค่าไปครับ
Code (PHP)
<?
session_start();
if($_SESSION['Cus_ID'] == "")
{
echo "Please Login!";
exit();
}
/* if($_SESSION['Status'] != "USER")
{
echo "This page for User only!";
exit();
} */
mysql_connect("localhost","root","root");
mysql_select_db("laundry");
$strSQL = "SELECT * FROM customer WHERE Cus_ID = '".$_SESSION['Cus_ID']."' ";
$objQuery = mysql_query($strSQL);
$objResult = mysql_fetch_array($objQuery);
?>
<?php
$host = "localhost";
$user = "root";
$pass = "root";
$dbname = "Laundry";
mysql_connect($host, $user, $pass);
mysql_select_db($dbname);
mysql_query("SET NAMES UTF8");
$Cus_ID = $_SESSION['Cus_ID'];
$sql = "SELECT * FROM inform WHERE Cus_ID = '$Cus_ID' ";
$rs = mysql_query($sql);
?>
<html>
<head><title>รายการแจ้งซักรีด</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
.style1 {font-size: xx-large;
color: #0000FF;
}
.style12 {font-family: "Angsana New"}
body {
background-image: url(images/200807-08-115541-1.jpg);
}
</style>
</head>
<body>
<table width="100%" height="130" border="1">
<tr>
<th height="87" colspan="4" scope="col"><strong><span class="style1">ระบบบริการการจัดการร้านซักรีดออนไลน์</span></strong></th>
</tr>
<tr>
<th width="152" height="37" scope="col"><span class="style12"><a href="HomePage.php">หน้าแรก</a></span></th>
<th scope="col"><a href="Inform.php">แจ้งซักรีด</a></th>
<th scope="col"><a href="CusCheckInform.php">ตรวจสอบสถานะการซักรีด</a></th>
<th scope="col"><a href="Transfer.php">บริการการส่ง</a></th>
</tr>
</table>
<p align="center"><b><font color="#000080" size="5" face="MS Sans Serif">ตรวจสอบสถานะการซักรีด</font></b></p>
<div align="center">
<table width="600" border="1">
<tr>
<th>ลำดับ</th>
<th>รหัสลูกค้า</th>
<th>วันที่แจ้ง</th>
<th>รายละเอียด</th>
<th>จำนวน</th>
<th>สถานะ</th>
<th>คำสั่ง</th>
</tr>
<?php
while($row = mysql_fetch_array($rs)) {
echo "<tr>" .
"<td align='center'>" . $row['Inform_ID'] . "</td>" .
"<td align='center'>" . $row['Cus_ID'] . "</td>" .
"<td>" . $row['Date'] . "</td>" .
"<td>" . $row['Detail'] . "</td>" .
"<td>" . $row['TotalAmount'] . "</td>" .
"<td>" . $row['Status'] . "</td>" .
"<td align='center'>" .
"<a href='InformCancel.php?Inform_ID =" . $row['Inform_ID'] . "'> แจ้งยกเลิก</a> " .
"</td>".
"</tr>";
}
?>
</table>
</div>
<p> </p>
</body>
</html>
|
|
|
|
|
Date :
2012-03-05 16:33:07 |
By :
Dongonline |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คือ ตรง url มันขึ้น น่ะครับ http://localhost/laundry/InformCancel.php?Inform_ID =21
|
|
|
|
|
Date :
2012-03-05 16:35:54 |
By :
Dongonline |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
NO 2 คุณ HaKonNan
ยังไม่ได้อ่ะครับ
|
|
|
|
|
Date :
2012-03-05 16:46:26 |
By :
Dongonline |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
พลาดๆ เอาใหม่นะ
|
ประวัติการแก้ไข 2012-03-05 17:01:16
|
|
|
|
Date :
2012-03-05 17:00:01 |
By :
13eachz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ครับ
|
|
|
|
|
Date :
2012-03-05 17:00:33 |
By :
Dongonline |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เป็นเหมือนเดิมอ่ะครับ
|
|
|
|
|
Date :
2012-03-05 17:01:08 |
By :
Dongonline |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เอาใหม่ครับ เมื่อกี้ผมดูผิด
Code (PHP)
<?php
$Inform_ID = $_GET['Inform_ID'];
mysql_connect("localhost", "root", "root");
mysql_select_db("Laundry");
mysql_query("SET NAMES UTF8");
$Cancel = 'แจ้งยกเลิก';
// ทำการส่งคำสั่ง SQL เพื่อทำการแก้ไขข้อมูล
$sqlEdit = " UPDATE inform SET Cancel = '$Cancel' ";
$sqlEdit .= " WHERE Inform_ID = '$Inform_ID' ";
$result = mysql_query($sqlEdit);
if ($result) {
header("location: CusCheckInform.php");
} else {
echo $sqlEdit; "Edit data failed.";
}
?>
<!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=windows-874" />
<title>Untitled Document</title>
</head>
<body>
</body>
</html>
|
|
|
|
|
Date :
2012-03-05 17:03:11 |
By :
13eachz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Inform_ID = อย่าเคาะวรรค แค่นั้นแหละ
|
|
|
|
|
Date :
2012-03-05 17:04:24 |
By :
ikikkok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
copy ไฟล์นี้ไปใช้ได้เลยใช่มั้ยครับ
|
|
|
|
|
Date :
2012-03-05 17:05:47 |
By :
Dongonline |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้าของผมใช้ได้แปลว่า บรรทัดที่ 10 หลัง $cancle มันมี ' อยู่ 2 อัน ดูดีๆครับ
|
|
|
|
|
Date :
2012-03-05 17:07:25 |
By :
13eachz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เปลี่ยนเป็น 2 อันแล้ว ไม่ได้อ่ะครับ
|
|
|
|
|
Date :
2012-03-05 17:19:37 |
By :
Dongonline |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เหอะๆ ไม่สนใจที่ผมบอกเลยหรอครับ
|
|
|
|
|
Date :
2012-03-05 17:20:38 |
By :
ikikkok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตาม No.10 ไปเลยครับ Inform_ID = อย่าเคาะวรรค
เช่น..<a href='InformCancel.php?Inform_ID=$row[Inform_ID]" >
|
|
|
|
|
Date :
2012-03-05 17:23:19 |
By :
systemanalysis |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ครับ
|
|
|
|
|
Date :
2012-03-05 17:44:42 |
By :
Dongonline |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมไม่เว้นวรรคแล้วอ่ะครับ ยังไม่เข้าฐานข้อมูลเลยอ่ะครับ
Code (PHP)
<?php
$Inform_ID = $_GET['Inform_ID'];
mysql_connect("localhost", "root", "root");
mysql_select_db("Laundry");
mysql_query("SET NAMES UTF8");
$Cancel = 'แจ้งยกเลิก';
// ทำการส่งคำสั่ง SQL เพื่อทำการแก้ไขข้อมูล
$sqlEdit = "UPDATE inform SET Cancel = '$Cancel'";
$sqlEdit .= "WHERE Inform_ID = '$Inform_ID'";
$result = mysql_query($sqlEdit);
if ($result) {
header("location: CusCheckInform.php");
} else {
echo $sqlEdit; "Edit data failed.";
}
?>
<!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=windows-874" />
<title>Untitled Document</title>
</head>
<body>
</body>
</html>
|
|
|
|
|
Date :
2012-03-05 17:46:08 |
By :
Dongonline |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตอน Link มันขึ้นน่ะครับ inform_ID น่ะครับ
|
|
|
|
|
Date :
2012-03-05 17:51:30 |
By :
Dongonline |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?
session_start();
if($_SESSION['Cus_ID'] == "")
{
echo "Please Login!";
exit();
}
/* if($_SESSION['Status'] != "USER")
{
echo "This page for User only!";
exit();
} */
mysql_connect("localhost","root","root");
mysql_select_db("laundry");
$strSQL = "SELECT * FROM customer WHERE Cus_ID = '".$_SESSION['Cus_ID']."' ";
$objQuery = mysql_query($strSQL);
$objResult = mysql_fetch_array($objQuery);
?>
<?php
$host = "localhost";
$user = "root";
$pass = "root";
$dbname = "Laundry";
mysql_connect($host, $user, $pass);
mysql_select_db($dbname);
mysql_query("SET NAMES UTF8");
$Cus_ID = $_SESSION['Cus_ID'];
$sql = "SELECT * FROM inform WHERE Cus_ID = '$Cus_ID' ";
$rs = mysql_query($sql);
?>
<html>
<head><title>รายการแจ้งซักรีด</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
.style1 {font-size: xx-large;
color: #0000FF;
}
.style12 {font-family: "Angsana New"}
body {
background-image: url(images/200807-08-115541-1.jpg);
}
</style>
</head>
<body>
<table width="100%" height="130" border="1">
<tr>
<th height="87" colspan="4" scope="col"><strong><span class="style1">ระบบบริการการจัดการร้านซักรีดออนไลน์</span></strong></th>
</tr>
<tr>
<th width="152" height="37" scope="col"><span class="style12"><a href="HomePage.php">หน้าแรก</a></span></th>
<th scope="col"><a href="Inform.php">แจ้งซักรีด</a></th>
<th scope="col"><a href="CusCheckInform.php">ตรวจสอบสถานะการซักรีด</a></th>
<th scope="col"><a href="Transfer.php">บริการการส่ง</a></th>
</tr>
</table>
<p align="center"><b><font color="#000080" size="5" face="MS Sans Serif">ตรวจสอบสถานะการซักรีด</font></b></p>
<div align="center">
<table width="600" border="1">
<tr>
<th>ลำดับ</th>
<th>รหัสลูกค้า</th>
<th>วันที่แจ้ง</th>
<th>รายละเอียด</th>
<th>จำนวน</th>
<th>สถานะ</th>
<th>คำสั่ง</th>
</tr>
<?php
while($row = mysql_fetch_array($rs)) {
echo "<tr>" .
"<td align='center'>" . $row['Inform_ID'] . "</td>" .
"<td align='center'>" . $row['Cus_ID'] . "</td>" .
"<td>" . $row['Date'] . "</td>" .
"<td>" . $row['Detail'] . "</td>" .
"<td>" . $row['TotalAmount'] . "</td>" .
"<td>" . $row['Status'] . "</td>" .
"<td align='center'>" .
"<a href='InformCancel.php?Inform_ID =".$row['Inform_ID']."'> แจ้งยกเลิก</a> " .
"</td>".
"</tr>";
}
?>
</table>
</div>
<p> </p>
</body>
</html>
|
|
|
|
|
Date :
2012-03-05 17:53:19 |
By :
Dongonline |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ช่วยหน่อยนะครับ โปรเจคพรีเซ้นอาทิตย์นี้
เคยพรีเซ้นอาทิตย์ที่แล้ว แล้วไม่ผ่านต้องมาแก้อ่ะครับ
|
|
|
|
|
Date :
2012-03-05 18:01:07 |
By :
Dongonline |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$sqlEdit .= "WHERE Inform_ID = '$Inform_ID'"; เคาะวรรคหน้า where
|
|
|
|
|
Date :
2012-03-05 19:37:24 |
By :
ikikkok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ครับ
|
|
|
|
|
Date :
2012-03-05 20:40:57 |
By :
Dongonline |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|