|
|
|
แก้ไขไฟล์ภาพใน mysql ยังไงครับ คือผม โหลดไปรแกรม add image and resize to mysql ไปประยุกใช้เอง |
|
|
|
|
|
|
|
คือผม โหลดไปรแกรม add image and resize to mysql ไปประยุกใช้เอง ทำโค๊ดลบ ได้........แต่แก้ไข ไม่ได้อะ ครับ แก้ได้เฉพาะ ตัวหนังสือ ส่วนรูป.ทำยังไงก็แก้ไม่ได้.......ปวดหัวมาก.....ทำทั้ง วันทั้งคืน ไม่ได้สักที
---- ตางรางรูป Thumbnails และ FilesName
หน้า update.php
Code (PHP)
<html>
<head>
<title>:: Script การติดต่อฐานข้อมูล เพื่อ เพิ่ม/ลบ/แก้ไข/ค้นคืน ข้อมูล ::</title>
<meta http-equiv="Content-Type" content="text/html; charset=tis-620">
<style>
BODY {
FONT-FAMILY: Arial, Helvetica, sans-serif
}
</style>
</head>
<body>
<p align="center">
<font size="3"><<
<a href="connect.index.html">หน้าหลัก</a> >>
<font size="3"><<
<a href="showdata.php">เรียกดูข้อมูลในฐานข้อมูล</a> >>
<< <a href="adddata.php">เพิ่มข้อมูลลงฐานข้อมูล</a> >></font></p>
<p align="center"><u><b><font size="5" color="#800000">
แก้ไขข้อมูล</font></b></u></p>
<?php
include "config.inc.php";
$id = $_GET['id'];
$query = "select * from product1 where id='$id'";
$result = mysql_query($query);
$dbarr = mysql_fetch_array($result) ;
?>
<!-- ส่วนหัวของฟอร์มที่เป็นการบอกว่าจะให้ไปหน้าไหน หลังกดปุ่ม Submit -->
<form action="update_in.php" method="post" enctype="multipart/form-data">
<!-- ทำ Hidden Field เก็บค่า ID ไว้ส่งไปที่หน้า editdata_in.php ด้วย -->
<input type="hidden" name="id" value="<?php echo "$id"; ?>">
<table border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#0066CC">
<tr>
<td bgcolor="#FFFFFF"><p><font size="2">
ID</font></p></td>
<td bgcolor="#FFFFFF"><font size="2" color="red">
<? echo $id; ?></font>
</td>
</tr>
<tr>
<td bgcolor="#FFFFFF"><p><font size="2">
ประเภทสินค้า</font></p></td>
<td bgcolor="#FFFFFF">
<input name="type" type="text" value ="<?php echo "$dbarr[type]"; ?>" size="30" style="width: 227px" maxlength="100"></td>
</tr>
<tr>
<td bgcolor="#FFFFFF"> <font size="2"> ราคา</font></td>
<td bgcolor="#FFFFFF"><font size="2">
<input name="price" type="text" size="5" value="<?php echo "$dbarr[price]"; ?>" maxlength="5">
</font></td>
</tr>
<tr>
<td bgcolor="#FFFFFF"><font size="2"> จำนวน</font></td>
<td bgcolor="#FFFFFF"><font size="2">
<input name="amount" type="text" size="6" value="<?php echo "$dbarr[amount]"; ?> " maxlength="6"></td>
</tr>
<tr>
<td bgcolor="#FFFFFF"><font size="2"> size</font></td>
<td bgcolor="#FFFFFF"><font size="2">
<input name="model" type="text" size="6" value="<?php echo "$dbarr[model]"; ?> " maxlength="6">
</font></td>
</tr>
<td bgcolor="#FFFFFF"><font size="2"> รูป</font></td>
<td bgcolor="#FFFFFF"><font size="2">
<input name="fileUpload" type="file" value="<?php echo "$dbarr[FilesName]"; ?>">
</font></td>
<tr bgcolor="#0066CC">
<td colspan="2">
<div align="center">
<input type="submit" name="Submit" value="แก้ไขข้อมูล">
<input type="reset" name="Reset" value="ลบข้อมูล">
</div></td>
</tr>
</table>
</form>
</body>
</html>
หน้า update_in.php (ที่มีปีญหา อะครับ)
Code (PHP)
<html>
<head>
<title>:: Script การติดต่อฐานข้อมูล เพื่อ เพิ่ม/ลบ/แก้ไข/ค้นคืน ข้อมูล ::</title>
<meta http-equiv="Content-Type" content="text/html; charset=tis-620">
<style>
BODY {
FONT-FAMILY: Arial, Helvetica, sans-serif
}
</style>
</head>
<body>
<p align="center">
<font size="3"><<
<a href="connect.index.html">หน้าหลัก</a> >>
<font size="3"><<
<a href="showdata.php">เรียกดูข้อมูลในฐานข้อมูล</a> >>
<< <a href="adddata.php">เพิ่มข้อมูลลงฐานข้อมูล</a> >></font></p>
<?php
if(trim($_FILES["fileUpload"]["tmp_name"]) != "")
{
$images = $_FILES["fileUpload"]["tmp_name"];
$new_images = "Thumbnails_".$_FILES["fileUpload"]["name"];
copy($_FILES["fileUpload"]["tmp_name"],"shirt/".$_FILES["fileUpload"]["name"]);
$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,"shirt/".$new_images);
ImageDestroy($images_orig);
ImageDestroy($images_fin);
echo "Resize Successful.<br>";
//*** Insert Record ***//
include "config.inc.php";
// คือใช้คำสั่ง SQL ให้ทำทำการ UPDATE ค่าเข้าไปใหม่ ณ ตำแหน่ง Record ที่มีค่า ID เป็นค่าที่ได้รับมา
$sql="update product1 set type='$type' , price='$price', amount ='$amount', model='$model', FilesName='$fileUpload' WHERE id = '$id';";
;
$result = mysql_query($sql);
if($result) {
echo "<center>
<table border=\"1\" style=\"border-style:dotted; border-collapse: collapse; padding-left:4; padding-right:4; padding-top:1; padding-bottom:1\" bordercolor=\"#111111\" width=\"50%\" id=\"AutoNumber1\" height=\"138\">
<tr>
<td height=\"136\">
<center>
<font size=\"5\" color=\"#000080\">การแก้ไขข้อมูลสำเร็จ !!</font><br><br>
<font size=\"4\"><a href=\"insert.show.shirt.php\">ตกลง</a></font>
</center>
</td>
</tr>
</table>
</center>";
}
else {
echo "<center>
<table border=\"1\" style=\"border-style:dotted; border-collapse: collapse; padding-left:4; padding-right:4; padding-top:1; padding-bottom:1\" bordercolor=\"#111111\" width=\"50%\" id=\"AutoNumber1\" height=\"138\">
<tr>
<td height=\"136\" bgcolor=\"#FFCCFF\">
<center>
<font size=\"5\" color=\"#000080\">การแก้ไขข้อมูลล้มเหลว !!</font><br><br>
<font size=\"4\"><a href=\"showdata.php\">ตกลง</a></font>
</center>
</td>
</tr>
</table>
</center>";
}
}
?>
</body>
</html>
Tag : - - - -
|
|
|
|
|
|
Date :
2009-09-24 05:36:03 |
By :
kittioof |
View :
1408 |
Reply :
7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
FilesName='$new_images' // น่าจะเป็นตัวแปร $new_images น่ะครับ
?>
|
|
|
|
|
Date :
2009-09-24 09:06:17 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เดี๋ยวจะ ลอง ทำดู ครับ ได้ไม่ได้ ยังไง จะ มา เม้น ให้ครับ ขอบคุณครับ
|
|
|
|
|
Date :
2009-09-24 13:20:44 |
By :
kittioof |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมติดด้วยเหมือนกันคับ
เหอะๆ
Error Save [UPDATE menu SET MenuName = 'ข้าวกล้อง' ,TypeName = 'เมนูข้าว' ,Price = '77' ,FilesName = '' WHERE idMenu = '' ]
ดูให้ทีนะครับ
ขอบคุณมากครับ
|
|
|
|
|
Date :
2009-10-02 04:26:37 |
By :
gungrave |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
นี่โค้ดผมครับ รบกวนช่วยดูใหทีนะครับ ขอบคุณมากครับ
มัน Error แบบนี้
Error Save [UPDATE menu SET MenuName = 'g' , TypeName = 'เมนูข้าว' , Price = '222' , 'Thumbnails_2009530_46695.jpg','2009530_46695.jpg' WHERE idMenu = '' ]
EditMenu.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 menu.idType = menutype.idType and idMenu = '".$_GET["MenuID"]."' ";
$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("กรุณาใส่ตัวเลขค่ะ");
}
}
</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);
?>
EditMenuSave.php
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<title>Update Menu</title>
<?
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);
?>
|
|
|
|
|
Date :
2009-10-02 05:32:35 |
By :
gungrave |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เขียนแบบนี้ได้ป่ะคับ
$strSQL = "SELECT menu.* , menutype.* FROM menu,menutype WHERE menu.idType = menutype.idType and idMenu = '".$_GET["MenuID"]."' ";
|
|
|
|
|
Date :
2009-10-02 10:23:44 |
By :
gungrave |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แล้วตอนอัพเดทเขียนแบบนี้ถูกป่ะครับ
[/php]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"]."' ";
ผมศึกษาตาม Tototial ของในเว็บนี้แหละคับ ตอนนี้ผมทำได้แค่ Insert กับ Delete เหลือ Update ที่ยังติดอยู่รบกวน
ช่วยดูให้ผมทีนะครับ ขอบคุณมากครับ
|
|
|
|
|
Date :
2009-10-02 10:26:47 |
By :
gungrave |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|