|
|
|
พอดีผมเจอข้อผิดพลาดซึ่งผมหาไม่เจอ ขอให้ผู้รู้ช่วยดูและแนะนำหน่อยครับว่าโค้ดผมผิดตรงไหน |
|
|
|
|
|
|
|
คือผมทำฟอร์มอัพโหลดข้อมูลและรูปภาพลงฐานข้อมูล แล้วมันขึ้น
Code
insert into product (type_name,name,detail,passid,price,data,picture,photo1) values ('5','chalnel','chalnel','AD22256','256','7, 5, 2013','','')
บันทึกข้อมูลเรีบร้อยแล้ว ลองสังเกตุ หลังวันที่ 2อัน ยังไม่ลงฐานข้อมูลครับ คือรูปภาพแบบ Thumnail กับรูปภาพปกติ ยังไม่ลงฐานข้อมูล ยังไงช่วยดูให้ผมหน่อยครับ
โค้ด ฟอร์มส่งค่าครับ
Code (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>
<form name="form1" method="post" action="addproduct.php" enctype="multipart/form-data">
<table width="500" border="0" cellspacing="1" cellpadding="1" align="center">
<tr>
<td>ยี่ห้อสินค้า:</td>
<td><select name="type_id" id="select">
<?
include "config.php";
$sql = "SELECT * FROM product_type order by type_name" ;
$query = mysql_query($sql);
while ($arr = mysql_fetch_array($query)){
?>
<option value="<? echo $arr[id]?>"><? echo $arr[type_name]?></option>
<? }?>
</select>
</td>
</tr>
<tr>
<td width="132" height="53" align="center">ชื่อสินค้า:</td>
<td width="368"><input type="text" name="nameproduct" size="40" /></td>
</tr>
<tr>
<td>รายละเอียด : </td>
<td><textarea name="detail" rows="10" cols="50"></textarea></td>
</tr>
<tr>
<td>รหัสสินค้า:</td>
<td><input type="text" name="passid" size="40" /></td>
</tr>
<tr>
<td>ราคา:</td>
<td><input type="text" name="price" size="40" /></td>
</tr>
<tr>
<td>รูปภาพสินค้า:</td>
<td><input type="file" name="fileUplode" size="30" maxlength="100" /></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" name="submit" value="เพิ่มสินค้า" /><input type="reset" name="reset" value="Clare" /></td>
</tr>
</table>
</form>
</body>
</html>
ส่วนอันนี้เป็นโค้ดรับค่าและส่งค่าลงฐานข้อมูลครับ
Code (PHP)
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<?
include"config.php";
if(trim($_FILES["fileUpload"]["tmp_name"]) != "")
{
$images = $_FILES["fileUpload"]["tmp_name"];
$images1 = $_FILES["fileUpload"]["name"];
$new_images = "Thumbnails_".$_FILES["fileUpload"]["name"];
copy($_FILES["fileUpload"]["tmp_name"],"images1/".$_FILES["fileUpload"]["name"]);
$width=200; //*** 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,"images1/".$new_images);
ImageDestroy($images_orig);
ImageDestroy($images_fin);
}
$today = date("j, n, Y");
echo $sql = "insert into product (type_name,name,detail,passid,price,data,picture,photo1) values ('$_POST[type_id]','$_POST[nameproduct]','$_POST[detail]','$_POST[passid]','$_POST[price]','$today','$new_images','$images1')";
$result = mysql_query($sql);
echo "บันทึกข้อมูลเรีบร้อยแล้ว";
//echo"<meta http-equiv='refresh' content='1;url=index.php'>";
?>
ยังไงช่วยผมดูหน่อยครับบางครั้งมันผิดพลาดผมหาไม่เจอ เลยต้องพึ่งพี่ๆเซียนๆทั้งหลายครับ
Tag : PHP, HTML/CSS, CakePHP, Windows
|
|
|
|
|
|
Date :
2013-05-07 11:42:50 |
By :
jamjung002 |
View :
737 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|