|
|
|
ช่วยผมด้วยครับ เรื่อง ตัวแปร GET คือผมจะทำการ Update Record คับ ผมสามารถรับค่าตัวแปร . $_GET["MenuID"] |
|
|
|
|
|
|
|
คือผมจะทำการ Update Record คับ ผมสามารถรับค่าตัวแปร .$_GET["MenuID"] จากหน้าหลักมาที่หน้า แก้ไขที่หน้า แก้ไข
ได้แล้ว แต่พอผมจะเซฟลงดาต้าเบส มันกลับบอกว่า
Error Save [UPDATE menu SET MenuName = 'ข้าวผัดกระเพราหมู' , TypeName = 'เมนูข้าว' , Price = '30' , 'Thumbnails_20080518130216358.jpg','20080518130216358.jpg' WHERE idMenu = '' ]
ติดมาตั้งแต่มะวานแล้วครับ
รบกวนช่วยดูให้ผมทีนะครับ ขอบคุณมากครับ
โค้ดหน้าเซฟครับ
Save (PHP)
<?
for($i=0;$i<count($_FILES["fileUpload"]["name"]);$i++)
{
if(trim($_FILES["fileUpload"]["tmp_name"][$i]) != "")
{
$images = $_FILES["fileUpload"]["tmp_name"][$i];
$new_images = "Thumbnails_".$_FILES["fileUpload"]["name"][$i];
copy($_FILES["fileUpload"]["tmp_name"][$i],"MyResize/".$_FILES["fileUpload"]["name"][$i]);
$width=100; //*** Fix Width & Heigh (Autu caculate) ***//
$size=GetimageSize($images);
$height=round($width*$size[1]/$size[0]);
$images_orig = ImageCreateFromJPEG($images);
$photoX = ImagesX($images_orig);
$photoY = ImagesY($images_orig);
$images_fin = ImageCreateTrueColor($width, $height);
ImageCopyResampled($images_fin, $images_orig, 0, 0, 0, 0, $width+1, $height+1, $photoX, $photoY);
ImageJPEG($images_fin,"MyResize/".$new_images);
ImageDestroy($images_orig);
ImageDestroy($images_fin);
//*** Insert Record ***//
$objConnect = mysql_connect("localhost","root","") or die("Error Connect to Database");
$objDB = mysql_select_db("pailyndb");
$strSQL = "UPDATE menu SET MenuName = '".$_POST["txtMenu"]."' , TypeName = '".$_POST["txtTypeName"]."' , Price = '".$_POST["txtPrice"]."' ,
'".$new_images."','".$_FILES["fileUpload"]["name"][$i]."' WHERE idMenu = '".$_GET["MenuID"]."' ";
$objQuery = mysql_query($strSQL);
if($objQuery)
{
echo "<script>alert('แก้ไขรายการอาหารเรียบร้อยแล้วค่ะ');</script>";
echo "<script>window.location='ManageMenu.php';</script>";
}
else
{
echo "Error Save [".$strSQL."]";
}
mysql_close($objConnect);
}
}
?>
Tag : - - - -
|
|
|
|
|
|
Date :
2009-10-03 02:03:46 |
By :
gungrave |
View :
1155 |
Reply :
13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลอง echo $_GET["MenuID"];
ดูว่ามันมีค่าอันนี้มาด้วยหรือเปล่าครับ
|
|
|
|
|
Date :
2009-10-03 02:08:55 |
By :
deawx |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้ละครับ มันบอกว่า Array [MenuID] คับ
|
|
|
|
|
Date :
2009-10-03 02:28:00 |
By :
gungrave |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ต้องแก้ยังงัยครับ ช่วยบอกแนะนำด้วยนะครับ ขอบคุณมากครับ
บอร์ดนี้มีแต่คนใจดี
อิอิ
|
|
|
|
|
Date :
2009-10-03 02:37:05 |
By :
gungrave |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอดูหน้าหลักหน่อยครับ อยากเห็นตัวแปร MenuID ก่อนส่งมานี้
|
|
|
|
|
Date :
2009-10-03 10:50:31 |
By :
xbeginner01 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองตัดเป็นตอนๆดูแล้วค่อยเอารวมกัน
|
|
|
|
|
Date :
2009-10-03 12:41:20 |
By :
doji |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
นี่ครับตัดเอามาเฉพาะที่ส่งค่าตัวแปร
Manage Menu (PHP)
<td width="50"><div align="center"><a href="EditMenu.php?MenuID=<?=$objResult["idMenu"];?>"><img src="Images/Icon_Edit.png" width="30" height="30" border="0" /></a></div>
Edit Menu (PHP)
<?php
<?
$objConnect = mysql_connect("localhost","root","") or die("Error Connect to Database");
$objDB = mysql_select_db("pailyndb");
$strSQL = "SELECT menu.* , menutype.* FROM menu,menutype WHERE idMenu = '".$_GET["MenuID"]."' and menu.idType = menutype.idType";
$objQuery = mysql_query($strSQL);
$objResult = mysql_fetch_array($objQuery) or die ("Error Query [".$strSQL."]");
if(!$objResult)
{
echo "Not found idMenu=".$_GET["MenuID"];
}
else
{
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<title>Update Menu</title>
<SCRIPT language=JavaScript>
function check_number() {
e_k=event.keyCode
//if (((e_k < 48) || (e_k > 57)) && e_k != 46 ) {
if (e_k != 13 && (e_k < 48) || (e_k > 57)) {
event.returnValue = false;
alert("กรุณาใส่ตัวเลขค่ะ");
}
}
function check()
{
if (document.form1.txtMenu.value=="")
{
alert("กรุณาระบุรายการอาหารก่อนค่ะ");
document.form1.txtMenu.focus();
return false;
}
if (document.form1.txtPrice.value=="")
{
alert("กรุณาระบุราคาอาหารก่อนค่ะ");
document.form1.txtPrice.focus();
return false;
}
}
</script>
</script>
<style type="text/css">
<!--
.style1 {
font-family: "KT Wonderfool"
}
.style5 {
font-size: 26px
}
.style17 {
font-family: Tahoma;
font-weight: bold;
font-size: 16px;
}
.style18 {font-family: "KT Wonderfool"; font-size: 24px; }
.style19 {font-family: "KT Wonderfool"; font-size: 26px; }
.style20 {
font-size: 18px;
font-family: Tahoma;
font-weight: bold;
}
.style21 {
font-family: "KT Wonderfool";
font-size: 36px;
font-weight: bold;
}
-->
</style>
</head>
<body>
<table width="955" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<th height="250" colspan="7" align="left" valign="top" bordercolor="#E7EAEE" background="Images/Untitled-2.png" scope="col"><p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p></th>
</tr>
<tr>
<td width="166" height="40" align="left" bgcolor="#DB1D3E"><div align="center" class="style18 style1 style5"><strong><a href="ManageMenu.php" style="text-decoration: none; color:#FFFFFF;">จัดการรายการอาหาร</a></strong></div></td>
<td width="163" height="40" bgcolor="#DB1D3E"><div align="center" class="style18 style1 style5"><strong><a href="ManageOrder.php" style="text-decoration: none; color:#FFFFFF;">จัดการคำสั่งซื้อ</a></strong></div></td>
<td width="156" height="40" bgcolor="#DB1D3E"><div align="center" class="style19 style1 style5"><strong><a href="ManageMember.php" style="text-decoration: none; color:#FFFFFF;">จัดการข้อมูลสมาชิก</a></strong></div></td>
<td width="156" height="40" bgcolor="#DB1D3E"><div align="center" class="style18 style1 style5"><strong><a href="ManageNews.php" style="text-decoration: none; color:#FFFFFF;">จัดการข่าวสาร</a></strong></div></td>
<td width="156" height="40" bgcolor="#DB1D3E"><div align="center" class="style18 style1 style5"><strong><a href="SaleResult.php" style="text-decoration: none; color:#FFFFFF;">สรุปยอดขาย</a></strong></div></td>
<td width="158" height="40" bgcolor="#DB1D3E"><div align="center" class="style1 style5 style20"><a href="Admin.php" class="style19" style="text-decoration: none; color:#FFFFFF;">ออกจากระบบ</a></div></td>
</tr>
</table>
<table width="955" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="30" colspan="5" align="left"> </td>
</tr>
<tr>
<td height="30" colspan="5" align="left"><div align="center" class="style21">แก้ไขรายการอาหาร</div></td>
</tr>
<tr>
<td height="30" colspan="5" align="left"> </td>
</tr>
<tr>
<td width="250" height="30" align="left"><div align="left"><span class="style17">รายการอาหาร</span></div></td>
<td width="140" align="left"><div align="center" class="style17">ประเภท</div></td>
<td width="60" align="left"><div align="center" class="style17">ราคา</div></td>
<td width="185" align="left"><div align="center" class="style17">รูปภาพ</div></td>
<td width="320" align="left"><div align="center" class="style17">แก้ไข</div></td>
</tr>
<tr>
<td height="30" colspan="5" align="left"><form method="POST" action="EditMenuSave.php" enctype="multipart/form-data" name="form1" id="form1">
<table width="955" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="250"><div align="left">
<input name="txtMenu" type="text" id="txtMenu" style="width:200px" maxlength="255" value="<?=$objResult["MenuName"];?>"/>
</div></td>
<td width="140">
<div align="center">
<input type="text" name="txtTypeName" id="txtTypeName" style="width:70px" value="<?=$objResult["TypeName"];?>">
</div>
<td width="60"><div align="center">
<input name="txtPrice" type="text" id="txtPrice" style="width:30px" onkeypress=check_number() maxlength="3" value="<?=$objResult["Price"];?>"/>
</div></td>
<td width="185"><center><a href="MyResize/<?=$objResult["FilesName"];?>"><img src="MyResize/<?=$objResult["Thumbnails"];?>" border="0"></a></center></td>
<td width="320"><div align="center"><input type="file" name="fileUpload[]" id="fileUpload[]">
<input type="submit" name="Submit" value="OK" style="width:55px"/>
</div></td>
</tr>
</table>
</form></td>
</tr>
<tr>
<td height="30" colspan="5" align="left"> </td>
</tr>
<tr>
<th height="45" colspan="8" align="left" background="Images/bg-footer[2].png" scope="row"><MARQUEE onmouseover=stop(); onmouseout=start();>
<img src="Images/Footer(runnerEn).png" width="275" height="15" />
</marquee></th>
</tr>
</table>
</body>
</html>
<?
}
mysql_close($objConnect);
?>
|
|
|
|
|
Date :
2009-10-03 13:42:01 |
By :
gungrave |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เช็คค่านี้ต่อครับ <?=$objResult["idMenu"];?> ได้ไร
สงสัยผลของ No2 คุณ echo ยังไงถึงได้ Array[MenuID] ทำยังงี้หรอ echo $_GET."[MenuID]";
ลอง echo ใหม่ครับ
echo $_GET[MenuID];
|
|
|
|
|
Date :
2009-10-03 17:03:24 |
By :
xbeginner01 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตอนนี้ผมรับค่า MenuID มาได้แล้วครับ แต่ติดอยู่ที่ มันเซฟลงดาต้าเบสไม่ได้ครับ ผมไม่รู้ว่าผมเขียน Update Set
ถูกมั๊ย ถ้ายังไงรบกวนช่วยดูให้ทีนะครับว่าผมเขียนถูกรึป่าว ขอบคุณมากนะครับ
Code (PHP)
$strSQL = "UPDATE menu SET MenuName = '".$_POST["txtMenu"]."' , TypeName = '".$_POST["txtTypeName"]."' , Price = '".$_POST["txtPrice"]."' ,
'".$new_images."','".$_FILES["fileUpload"]["name"][$i]."' WHERE idMenu = '".$_GET["MenuID"]."' ";
|
|
|
|
|
Date :
2009-10-03 17:11:21 |
By :
gungrave |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เหอๆ ช่วยดูให้ผมหน่อยเน้อ จาพรีเซนต์แล้ว
Code (PHP)
$objConnect = mysql_connect("localhost","root","") or die("Error Connect to Database");
$objDB = mysql_select_db("pailyndb");
$strSQL = "UPDATE customer SET ";
$strSQL .="MenuName = '".$_POST["txtMenu"]."' ";
$strSQL .=",TypeName = '".$_POST["txtTypeName"]."' ";
$strSQL .=",Price = '".$_POST["txtPrice"]."' ";
$strSQL .=",'".$new_images."', = '".$_FILES["fileUpload"]["name"][$i]."' ";
$strSQL .="WHERE idMenu = '".$_GET["MenuID"]."' ";
$objQuery = mysql_query($strSQL);
if($objQuery)
{
|
|
|
|
|
Date :
2009-10-04 01:13:43 |
By :
gungrave |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$objQuery = mysql_query($strSQL);
เพิ่มหน่อยครับ
$objQuery = mysql_query($strSQL) or die(mysql_error());
ให้มันฟ้องเออเรอมาหน่อย มองไม่เห็นภาพ
|
|
|
|
|
Date :
2009-10-04 02:41:24 |
By :
xbeginner01 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันไม่ Error แล้วอะคับ เหมือนมารับค่ามาได้แล้ว
แต่มันขึ้น หน้า blank เปล่าๆ มาให้
แล้วตรว Address Bar ก็ขึ้น url แบบนี้อะคับ
http://localhost/Pailin/EditMenuSave.php?MenuID=1
แต่ก็ยังเซฟลงดาต้าเบสมะได้อยู่ดี
เหอๆ
รบกวนช่วยดูให้ผมด้วยนะครับ
ขอบพระคุณอย่างสูงคับ
|
|
|
|
|
Date :
2009-10-04 03:51:37 |
By :
gungrave |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$strSQL .=",'".$new_images."', = '".$_FILES["fileUpload"]["name"][$i]."' ";
บรรทัดนี้มันดูไม่ค่อยมีเหตุผลเท่าไร จงใจเก็บค่า $_FILES["fileUpload"]["name"][$i] ลงในชื่อฟิลด์ $new_images หรอ แล้วยังมีลูกน้ำคั่นกลางอีกหมายความว่าไงเนี่ย
ลองเช็คตรงนี้ใหม่ละกัน
สงสัยจะไปพรีเซนแล้วสิ ขอให้ผ่านละกัน
|
|
|
|
|
Date :
2009-10-04 11:14:08 |
By :
xbeginner01 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ
ผมก็สงสัยอยุ่เหมือนกันคับ
พรีเซนต์ จัน อังคาร นี้ครับ
|
|
|
|
|
Date :
2009-10-04 11:34:22 |
By :
gungrave |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|