ช่วยทีครับ Warning: copy(5.JPG) [function.copy]: failed to open stream: No such file or directory
Error
Warning: copy(5.JPG) [function.copy]: failed to open stream: No such file or directory in C:\AppServ\www\DBroom\insert.php on line 26
Error copying file.
รบกวนผูรู้ช่วยอธิบายและช่วยบอกทางแก้ทีครับ
Code (PHP)
<?
session_start();
if (($user=="root") && ($password=="1234"))
{
if(!$send) {
?>
<form method="post" action="<? $PHP_SELF; ?>">
<h3><b>เพิ่มรายการห้องพัก</b></h3><br>
ประเภทห้อง: <input type="text" name="type"><br>
ขนาด: <input type="text" name="size"><br>
ราคา/วัน: <input type="text" name="price_day"><br>
ราคา/เดือน: <input type="text" name="price_month"><br>
รูปภาพ: <input type="file" name="picture"><br>
<input type="submit" value="ตกลง" name="send">
<input type="reset" value="ยกเลิก" name="cancel">
</form>
<?
}
else
{
$path_pic="C:/AppServ/www/DBroom/apartment/image/";
if ($picture != none)
{
if (copy ($picture, "$path_pic/$type.jpg"))
{
$image = $type.".jpg";
$link = mysql_connect("localhost", "root", "1234");
mysql_query("Use room;");
mysql_query("set NAMES tis620");
$sql = "Insert Into room(room_type, room_size, priceperday, pricepermonth, picture) Values ('$type', '$size', '$price_day', ' $price_month', '$image');";
$result = mysql_query($sql);
if ($result)
{
echo "เพิ่มรายการห้องพักใหม่แล้ว<p>";
mysql_close($link);
}
else
{
echo "ไม่สามารถเพิ่มรายการห้องใหม่ได้<p>";
}
}
else
print ("Error copying file.");
}
else
echo "No file to be uploaded!";
}
}
else
{
echo "Invalid to entry the Admin Page";
}
?>
Tag : PHP
Date :
2014-04-09 19:41:38
By :
quest
View :
754
Reply :
3
เรียนใหม่ดีป่ะ? ผมว่าคุณยังสับสนระหว่างพาทของวินโดว์ และพาทของเว็บนะ
PHP File Upload
ประวัติการแก้ไข 2014-04-10 09:51:06
Date :
2014-04-10 09:24:54
By :
arm8957
Load balance : Server 05