|
|
|
รูปภาพไม่เก็บลงโพเดอร์เมื่อรันขึ้นแต่ localhost เก็บลงโพเดอร์เป็นที่อะไรหรือครับ |
|
|
|
|
|
|
|
ผมใช้โค้ดตัวนี้อะครับ ในการเก็บรูปลงโพเดอร์ ทดสอบใน localhost สามารถเก็บลงโพเดอร์ได้ แต่ ผมลองทดสอบขึ้นเว็บจริง มันไม่สารถเก็บรูปลงโพเดอร์ได้อะครับ เป็นที่อะไรหรือครับ ใครพอจะรู้บ้างครับ ขอคำชีแนะที่ครับ
โค้ดที่ใช้เก็บรูปลงโพสเดอร์
$rand1 = rand(0,1000);
$rand2 = rand(100000000000,10000000000000000);
$name_file= rand($rand1,$rand2);
$ext=end(explode('.', $_FILES['imagep']['name']));
$new_name_file = $name_file . '.' . $ext;
$PATH_FILEUPLOAD = "";
$PATH_FILEUPLOAD = 'pictureproduct/' . $new_name_file;
move_uploaded_file($_FILES['imagep']['tmp_name'], $PATH_FILEUPLOAD);
อันนีเ้ป็นโค้ดตัวเต็มที่ผมเขียน
Code (PHP)
<?php
$idpro=$_POST['idpro'];
$series=$_POST['series'];
$provinn=$_POST['provinn'];
$namepo=$_POST['namepo'];
$procat=$_POST['procat'];
$textareazies=$_POST['textareazies'];
$textareapro=$_POST['textareapro'];
$color=$_POST['color'];
$procatprogro=$_POST['procatprogro'];
$rand1 = rand(0,1000);
$rand2 = rand(100000000000,10000000000000000);
$name_file= rand($rand1,$rand2);
$ext=end(explode('.', $_FILES['imagep']['name']));
$new_name_file = $name_file . '.' . $ext;
$PATH_FILEUPLOAD = "";
$PATH_FILEUPLOAD = 'pictureproduct/' . $new_name_file;
move_uploaded_file($_FILES['imagep']['tmp_name'], $PATH_FILEUPLOAD);
require_once("sqlconn.php");
$strSql="INSERT INTO product(Pid,Pseries,Pclass,Pname,Pcategory,Psize,Pdetail,color,pic,protegory)
VALUES('$idpro','$series','$provinn','$namepo','$procat','$textareazies','$textareapro','$color','$new_name_file','$procatprogro')";
$result=mysqli_query($conn,$strSql);
if($result){
mysqli_close($conn);
echo "<center><a href ='menu_Backofficeseeion.php' style='text-decoration: none;'><h3>ลงข้อมูลเสร็จสิ้น</h3> </a></center>";
}
?>
Tag : PHP, MySQL, HTML/CSS, JavaScript
|
|
|
|
|
|
Date :
2016-08-27 11:29:53 |
By :
chaiwat0852646203 |
View :
852 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขิบคุณครับ เดี๋ยวผมจะลองดู
|
|
|
|
|
Date :
2016-08-29 08:57:40 |
By :
chaiwat0852646203 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองแล้ว ไม่ต้องไปเขียนโค้ดเพิ่มเลยครับ แค่เข้าไปแก้ หรัสโพเดอร์ให้เป็น 777 ก็นำรูปอัพโหลดลงได้แล้วครับ
|
|
|
|
|
Date :
2016-08-31 16:43:07 |
By :
chaiwat0852646203 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|