|
|
|
ขอโค้ด อัพไฟล์ หน่อยค่ะ คือเขียนให้ อัพไฟล์ได้แล้ว แต่ไฟล์ที่อัพขึ้นไปมันไม่ไปเก็บยังโฟลเดอร์ที่ต้องการ |
|
|
|
|
|
|
|
root ก็คือ Path ของ server คับ หากคุณสร้างโฟลเดอร์ย่อย คุณจะต้องอ้างอิงถึงมันด้วย
ดังตัวอย่างที่ผมเขียนให้ดู (ละเอียดนะเอาไปดูเล่นๆ) ไฟล์ index.php หน้าแรกผมเก็บไว้ที่โฟลเดอร์ page ซึ่งสร้างไว้ใน root และในโฟลเดอร์ page มีไฟล์ .php ต่างๆ และผมได้สร้างโฟลเดอร์เอาไว้เพื่อเก็บรูปที่อัพโหลด ชื่อ memberpic
เวลาผมอ้างอิง ผมก็ใช้ $DirPath="page/memberpic/";
ถ้าให้ดูเป็น Part ก็จะได้ root/page/memberpic/ไฟล์ที่อัพมา.นามสกุล
เช่นถ้าคุณลง Appserv - root คุณจะเป็น C:\AppServ\www
ถ้าดูตาม โคดที่ผมเขียนจะได้เป็น
C:/AppServ/www/page/memberpic/ไฟล์ที่อัพมา.นามสกุล
$DirPath="page/memberpic/";
$DesPath = $_SERVER["DOCUMENT_ROOT"] . "/" . $DirPath;
// ===========================================================
IF ($_FILES['upFile']['size']<1)
{
echo
"
<html>
<head><title>My Gozza</title>
<meta http-equiv=\"Content-Type\" content=\"text/html; charset=windows-874\">
</head>
<body topmargin=0 leftmargin=0 bgcolor=#222222>
<center>
<br><br><br><br><br><br><br><br><br><br>
<font face=\"System\" size=2 color=#aaaaaa>คุณยังไม่ได้เลือกไฟล์คับ</font><br>
<br>
<input type=\"image\" src=\"Picture/backpic2.gif\" onClick=\"jscript:history.go(-1)\">
</center>
</body>
</html>
";
exit();
}
// ===========================================================
IF (! is_dir($DesPath))
{
echo "ไม่มีโฟลเดอร์ปลายทาง";
exit();
}
// ===========================================================
IF ($_FILES['upFile']['type'] == "image/gif" )
{
IF ($_FILES['upFile']['size']>20480)
{
echo
"
<html>
<head><title>My Gozza</title>
<meta http-equiv=\"Content-Type\" content=\"text/html; charset=windows-874\">
</head>
<body topmargin=0 leftmargin=0 bgcolor=#222222>
<center>
<br><br><br><br><br><br><br><br><br><br>
<font face=\"System\" size=2 color=#aaaaaa>ขนาด Size on disk ของไฟล์ต้องไม่เกิน 20kb. คับป๋ม</font><br>
<br>
<input type=\"image\" src=\"Picture/backpic2.gif\" onClick=\"jscript:history.go(-1)\">
</center>
</body>
</html>
";
}
ELSE
{
$sql_5 = " UPDATE picindex SET Status='Delete' WHERE ID='$F[PicName]' ";
$result_5 = mysql_query($sql_5, $conn);
$sql_4 = mysql_query ("INSERT INTO picindex (ID, Status) VALUES ('', 'Use') ");
$sql_2 = " SELECT * FROM picindex ORDER BY ID DESC";
$result_2 = mysql_query($sql_2, $conn);
$num_rows_2 = mysql_num_rows($result_2);
$FF = mysql_fetch_array($result_2);
IF (@copy($_FILES['upFile']['tmp_name'] , $DesPath . "" . $FF[ID] . ".gif"))
{
echo
"
<html>
<head><title>My Gozza</title>
<meta http-equiv=\"Content-Type\" content=\"text/html; charset=windows-874\">
<meta http-equiv=Page-Enter content=blendTrans(Duration=3)>
<meta http-equiv=Page-Exit content=blendTrans(Duration=3)>
<meta http-equiv=\"refresh\" content=\"5;url=member_idpage.php\">
</head>
<body topmargin=0 leftmargin=0 bgcolor=#222222>
<center>
<br><br><br><br><br><br><br><br><br><br>
<font face=\"System\" size=2 color=#aaaaaa>อัพโหลดรูปภาพให้แล้วคับ รอแป๊ปนึงจะย้ายเพจไปยังหน้าของคุณ</font><br>
</center>
</body>
</html>
";
$VarPicName = $FF[ID];
$F[Item_PictureCard] = $F[Item_PictureCard] -1;
$sql_3 = " UPDATE member SET PicName='$VarPicName', Item_PictureCard=$F[Item_PictureCard] WHERE ID='$SID' ";
$result_3 = mysql_query($sql_3, $conn);
}
}
}
ELSE
{
echo
"
<html>
<head><title>My Gozza</title>
<meta http-equiv=\"Content-Type\" content=\"text/html; charset=windows-874\">
</head>
<body topmargin=0 leftmargin=0 bgcolor=#222222>
<center>
<br><br><br><br><br><br><br><br><br><br>
<font face=\"System\" size=2 color=#aaaaaa>การอัพโหลดนี้รองรับเฉพาะไฟล์ .gif เท่านั้นคับ</font><br>
<br>
<input type=\"image\" src=\"Picture/backpic2.gif\" onClick=\"jscript:history.go(-1)\">
</center>
</body>
</html>
";
exit();
}
KOBSOFT STUDIOS ก็แค่เทพ
|
|
|
|
|
Date :
10 พ.ค. 2549 23:11:12 |
By :
กบ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากนะคะ เยอะตาลายเชียว
แต่ลองทำดูค่ะ
|
|
|
|
|
Date :
11 พ.ค. 2549 11:51:43 |
By :
หนูกวางค่ะ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|