เจอปัญหาการอัพดหลดรูปภาพค่ะเซียน php ช่วยด้วยค่ะ คือเขียนโค๊ดการเพิ่มข้อมูล โดยมีการเพิ่มรูปภาพ
คือเขียนโค๊ดการเพิ่มข้อมูล โดยมีการเพิ่มรูปภาพเข้าไปด้วย ปรากฏว่าเพิ่มข้อมูลได้ค่ะ
แต่รูปภาพเพิ่มไม่ได้เลย ในโฟลเดอร์ของ photo สร้างเก็บรูปนั้นมีเฉพาะนามสกุลไฟล์เท่านั้น
<?
$name=$_POST [name];
$ref_id_type=$_POST [ref_id_type];
$authors=$_POST [authors];
$type=$_POST [type];
$detail=$_POST [detail];
$price=$_POST [price];
$discount=$_POST [discount];
$store=$_POST [store];
$fileupload=$_FILES ['fileupload'] ['tmp_name'];
$fileupload_name=$_FILES ['fileupload'] ['name'];
$fileupload_size=$_FILES ['fileupload'] ['size'];
$fileupload_type=$_FILES ['fileupload'] ['type'];
if ($name=="") {
echo "<center><H3>ERROR : กรุณาเลือก ชื่อหนังสือ</H3>";
echo "<meta http-equiv='refresh' content='3;url=add_book.php'>" ;
exit();
} else if ($ref_id_type=="0") {
echo "<center><H3>ERROR : กรุณาเลือก ประเภทสินค้า </H3>";
echo "<meta http-equiv='refresh' content='3;url=add_book.php'>" ;
exit();
} else if ($authors=="") {
echo "<center><H3>ERROR : กรุณากรอก ชื่อผู้แต่ง </H3>";
echo "<meta http-equiv='refresh' content='3;url=add_book.php'>" ;
exit();
} else if ($detail=="") {
echo "<center><H3>ERROR : กรุณากรอก รายละเอียดหนังสือ </H3>";
echo "<meta http-equiv='refresh' content='3;url=add_book.php'>" ;
exit();
} else if ($price=="") {
echo "<center><H3>ERROR : กรุณากรอก ราคาหนังสือ </H3>";
echo "<meta http-equiv='refresh' content='3;url=add_book.php'>" ;
exit();
} else if ($discount=="") {
echo "<center><H3>ERROR : กรุณาเลือก ส่วนลดหนังสือ </H3>";
echo "<meta http-equiv='refresh' content='3;url=add_book.php'>" ;
exit();
} else if ($store=="0") {
echo "<center><H3>ERROR : กรุณากรอก จำนวนสินค้าคงคลัง </H3>";
echo "<meta http-equiv='refresh' content='3;url=add_book.php'>" ;
exit();
}
include "connect.php";
$sql="INSERT INTO book values(null,'$name','$ref_id_type','$type','$authors','$detail','$price','$discount','$store','') ";
$result=mysql_db_query($dbname,$sql);
if ($fileupload) {
$array_last=explode(".",$fileupload_name);
$c=count($array_last)-1;
$lastname=strtolower($array_last[$c]) ;
if ($lastname=="gif" or $lastname=="jpg" or $lastname=="jpeg") {
$sql2="select max(bookid) from book ";
$result2=mysql_db_query($dbname,$sql2);
$row=mysql_fetch_row($result2);
$photoname=$row[0].".".$lastname;
copy($fileupload,"photo/".$photoname);
$sql3="update book set bookphoto='$photoname' where bookid ='$row[0]' ";
$result3=mysql_db_query($dbname,$sql3);
}
unlink($fileupload);
}
echo "<H3><center>เพิ่ม สินค้าเรียบร้อยแล้ว</H3>";
echo"<a href='add_book.php'> เพิ่มสินค้า <a href='showbook.php'>ดูรายการสินค้าทั้งหมด";
mysql_close();
?>Tag : - - - -
Date :
27 มิ.ย. 2551 16:12:34
By :
maem
View :
1614
Reply :
3
bookid มีค่าใส่ไว้หรือเปล่าครับ
ถ้าไม่ได้ตั้ง Auto ใน SQL ไว้ ก็จะเป็นค่า null ทำให้ไม่แสดง id ที่จะนำมาใช้เป็นชื่อไฟล์
ถ้าทำแล้ว ก็ต้องดูปัญหาต่อไปครับ
Date :
28 มิ.ย. 2551 13:19:48
By :
p_latplee
ใส่เเล้วค่ะ ตั้ง Auto ปัญหาที่เกิดขึ้นหาไม่เจอเลย
Date :
28 มิ.ย. 2551 15:38:47
By :
maem
โค๊ดเพิ่มข้อมูลของ php
Date :
29 ธ.ค. 2551 10:42:07
By :
44
Load balance : Server 00