|
|
|
รบกวนช่วยดูโค้ดอัพโหลดให้ผมทีครับมันไม่ยอมอัพโหลดครับ |
|
|
|
|
|
|
|
ไฟล์เดิมอัพโหลดได้ปกกติ แต่พอเอาโค้ดมาก็กด Crt+A มาเปลี่ยนแค่ พาทฟอร์เดอร์ครับมันก็ไม่ได้ล่ะเป็นเพราะอะไรครับ ผมก็งง
ผิดที่โค้ดหรือเป็นที่ผมครับรบกวนด้วยน่ะครับ
Code (PHP)
add_product.php
<? session_start();
include("check_function/checksession.php");
include("header.php");
include("status.php");
include("connect/config.php");
?>
<meta http-equiv="Content-Type" content="text/html;" charset="utf-8" />
<style type="text/css">
<!--
.style6 {color: #333333}
-->
</style>
<table width="800" height="358" align="center" background="image/BG/bg_center.png">
<tr>
<td height="352" valign="top"><table width="783" height="326" border="0" align="center" cellspacing="0">
<tr>
<td width="135" valign="top"><table width="110" height="189" border="1" align="center">
<tr>
<td height="29">เมนูที่ใช้งาน</td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
</table></td>
<td width="644" align="center" valign="top"><table width="636" height="360" border="1">
<tr>
<td width="626" height="61">เพิ่มข้อมูลสินค้า</td>
</tr>
<tr>
<td align="center"><table width="628" height="338" border="0" cellspacing="0">
<tr>
<td width="357" height="338" valign="top"><form id="profrm" name="profrm" method="post"
action="add_product_post.php" enctype="multipart/form-data">
<table width="351" height="160" border="0" cellspacing="0">
<tr>
<td width="94" height="42" align="left">ประเภทสินค้า</td>
<td colspan="2"><label>
<select name="pro_type" class="txtbox" id="pro_type_name">
<option value="">เลือกประเภทสินค้า</option>
<?
//=========== แสดงหมวดหมู่
$sql_group = "select * from product_type";
$dbquery_group = mysql_query($sql_group);
$num_rows_group = mysql_num_rows($dbquery_group);
while ($result = mysql_fetch_array($dbquery_group))
{
if($_POST["pro_type_id"] == $result["pro_type_id"])
{
$sel="selected";
}
else
{
$sel="";
}
?>
<option value="<?=$result["pro_type_id"];?>" <?=$sel;?>>
<?=$result["pro_type_name"];?>
</option>
<?
}
?>
</select>
<a href="add_product_type.php">เพิ่มประเภทสินค้า
</a></label></td>
</tr>
<tr>
<td height="31" align="left">ชื่อสินค้า</td>
<td colspan="2"><input name="pro_name" type="text" id="pro_name" width="100%"/></td>
</tr>
<tr>
<td height="33" align="left">ภาพสินค้า</td>
<td colspan="2"><label>
<input name="fileUpload" type="file" id="fileUpload" size="15" width="100" />
</label></td>
</tr>
<tr>
<td height="34" align="center"> </td>
<td width="179" align="center"><label>
<input type="image" name="imageField" id="imageField" src="image/BG/save_button.png" />
</label></td>
<td width="72"> </td>
</tr>
</table>
</form> </td>
<td width="267" valign="top">
<p>
<? include("qr.php");
?>
</p>
</td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</table>
<? include("footer.php");?>
</p>
add_product_post.php
Code (PHP)
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<?
include("connect/config.php");
$file= $_FILES["fileUpload"]["name"];
if(trim($_FILES["fileUpload"]["tmp_name"]) != "")
{
$images = $_FILES["fileUpload"]["tmp_name"];
$new_images = "Thumbnails_".$_FILES["fileUpload"]["name"];
copy($_FILES["fileUpload"]["tmp_name"],"image/product/".$_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,"image/product/".$new_images);
ImageDestroy($images_orig);
ImageDestroy($images_fin);
}
echo $sql="insert into product(pro_id,pro_name,pro_type_id,pro_pic)values('','$pro_name','$pro_type','$file')";exit();
$result=mysql_query($sql,$conn);
if($result==1){
echo"<script>alert('บันทึกข้อมูลสินค้าเรียบร้อยแล้ว');window.location='add_product.php';</script>";
}else{
echo"<script>alert('บันทึกข้อมูลสินค้าเรียบร้อยแล้ว');window.location='add_product.php';</script>";
}
?>
Tag : PHP, HTML/CSS
|
ประวัติการแก้ไข 2012-01-15 00:49:12 2012-01-15 00:54:45
|
|
|
|
|
Date :
2012-01-15 00:46:45 |
By :
gmgo |
View :
804 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มี Error หรือเปล่าครับ
|
|
|
|
|
Date :
2012-01-15 06:51:11 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับพี่วิน ที่แวะเข้ามาดู ได้แล้วครับไม่รู้เป็นไร พอรีเครื่องใหม่มันก็อัพได้ซะงั้น งง?เหมือนกัน
|
|
|
|
|
Date :
2012-01-16 01:44:14 |
By :
gmgo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|