|
|
|
ต้องการ upload file เข้าโฟลเดอร์ ช่วยด้วยค่ะ ต้องการ upload file เข้าโฟลเดอร์ ไฟล์มันไม่เข้าในโฟลเดอร์ |
|
|
|
|
|
|
|
ช่วยด้วยค่ะ ต้องการ upload file เข้าโฟลเดอร์ ไฟล์มันไม่เข้าในโฟลเดอร์ แต่ในฐานข้อมูลเข้า ไม่รู้ว่าผิดตรงไหนช่วยดูให้หน่อยน่ะค่ะ โฟลเดอร์ชื่อ file_upload อยู่ในโฟลเดอร์ news ขอบคุณค่ะ
<?php
include "../include/connect.php";
include('function2.php');
$date_today=date("Y-m-d");
$time_today=date("H:i:s");
function random_password($len)
{
srand((double)microtime()*10000000);
$chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
$ret_str = "";
$num = strlen($chars);
for($i = 0; $i < $len; $i++)
{
$ret_str.= $chars[rand()%$num];
$ret_str.="";
}
return $ret_str;
}
// echo random_password(8);
$passw = random_password(7);
$path="file_upload";
$filenewcon = strstr($file_name,'.');
$now = date("Dgis");
copy( $news_upload ,"$path/$passw$now$filenewcon");
echo $sql="INSERT INTO `news` ( `news_id` , `news_title` , `news_detail` , `news_date` , `news_upload`)
VALUES ('', '$news_title', '$news_detail', '$date_today','$path/$passw$now$filenewcon')";
mysql_db_query("$dbname",$sql);
?>
<script language="javascript">alert("เพิ่มข่าวเรียบร้อยแล้วค่ะ");</script><?
echo "<meta http-equiv=\"refresh\" content=\"0;url=main_news.php\">";
?><style type="text/css">
<!--
body {
background-image: url(../images/11.bmp);
}
-->
</style>
Tag : - - - -
|
|
|
|
|
|
Date :
2009-05-13 12:50:45 |
By :
sofear |
View :
5437 |
Reply :
20 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
copy( $news_upload , $path . "/" . $passw . $now . $filenewcon);
?>
แบบนี้มั้ง แล้ว $news_upload คืออะไรอะ มันมาจากไหน
|
|
|
|
|
Date :
2009-05-13 13:46:49 |
By :
plakrim |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$news_upload เป็นชื่อของ file field ค่ะ
ข้างล่างนี้ค่ะ
<input name="news_upload" type="file" />
ดิฉันแก้แล้วน่ะค่ะ พอรันออกมาขึ้นอย่างข้างล่างนี้ค่ะ ชื่อไฟล์ในฐานข้อมูลก็มี แต่ในโฟลเดอร์ไม่มีไฟล์ค่ะ
ช่วยดูใหม่อีกรอบน่ะค่ะ ขอบคุณล่วงหน้าค่ะ
Warning: copy(detail_images.jpeg): failed to open stream: No such file or directory in C:\WM\www\project\news\insert_news.php on line 34
|
|
|
|
|
Date :
2009-05-13 18:54:10 |
By :
sofear |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
move_uploaded_file($_FILES['news_upload']['tmp_name'], $path . "/" . $passw . $now . $_FILES['news_upload']['name']);
?>
|
|
|
|
|
Date :
2009-05-13 19:27:55 |
By :
plakrim |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แก้แล้วค่ะ ไฟล์มันก็ไม่ได้เข้าไปอยู่ในโฟลเดอร์ แต่จะมีชื่อในฐานข้อมูลค่ะ
ไม่ทราบว่าเราต้องสร้างโฟลเดอร์ในส่วนไหนหรอค่ะ
แต่ที่ดิฉันสร้าง โฟล์เดอร์ที่เก็บไฟล์นั้นชื่อ file_upload มันจะอยู่ในโฟลเดอร์ news อีกทีหนึ่งค่ะ
รบกวนหน่อยน่ะค่ะ
|
|
|
|
|
Date :
2009-05-13 19:42:24 |
By :
sofear |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองดูนะคับ
Code (PHP)
<?php
//ตรงนี้แก้ื
$passw = random_password(7);
$path="file_upload";
$filenewcon = strstr($_FILES['news_upload']['name'],'.');
$now = date("Dgis");
//ตรงนี้น่าจะเป็นแบบนี้มากกว่านะ
copy($_FILES["news_upload"]["tmp_name"] ,$path . "/" . $passw . $now . $filenewcon);
?>
|
|
|
|
|
Date :
2009-05-13 20:23:12 |
By :
melodyApinan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันก็ยังไม่เข้าในโฟลเดอร์อยู่ดี
|
|
|
|
|
Date :
2009-05-13 21:18:05 |
By :
sofear |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ช่วยเอาโค๊ดล่าสุดมาโพสต์หน่อย แล้วก็ตอบด้วยว่า folder อยู่ระดับเดียวกันกับไฟล์นี้หรือไม่
|
|
|
|
|
Date :
2009-05-13 21:24:31 |
By :
plakrim |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<?php
include "../include/connect.php";
include('function2.php');
$date_today=date("Y-m-d");
$time_today=date("H:i:s");
function random_password($len)
{
srand((double)microtime()*10000000);
$chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
$ret_str = "";
$num = strlen($chars);
for($i = 0; $i < $len; $i++)
{
$ret_str.= $chars[rand()%$num];
$ret_str.="";
}
return $ret_str;
}
// echo random_password(8);
$passw = random_password(7);
$path="file_upload/";
$filenewcon = strstr($_FILES['news_upload']['name'],'.');
$now = date("Dgis");
copy($_FILES["news_upload"]["tmp_name"] ,$path . "/" . $passw . $now . $filenewcon);
$sql="INSERT INTO `news` ( `news_id` , `news_title` , `news_detail` , `news_date` , `news_upload`)
VALUES ('', '$news_title', '$news_detail', '$date_today','$path/$passw$now$filenewcon')";
mysql_db_query("$dbname",$sql);
?>
<script language="javascript">alert("เพิ่มข่าวเรียบร้อยแล้วค่ะ");</script><?
echo "<meta http-equiv=\"refresh\" content=\"0;url=main_news.php\">";
?><style type="text/css">
<!--
body {
background-image: url(../images/11.bmp);
}
-->
</style>
โฟลเดอร์ ชื่อว่า file_upload อยู่ในโฟล์เดอร์ news ไฟล์นี้ก็อยู่ในระดับเดียวกับ โฟล์เดอร์ file_upload
****(news/file_upload)
|
|
|
|
|
Date :
2009-05-13 22:04:20 |
By :
sofear |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<?php
include "../include/connect.php";
include('function2.php');
$date_today=date("Y-m-d");
$time_today=date("H:i:s");
function random_password($len)
{
srand((double)microtime()*10000000);
$chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
$ret_str = "";
$num = strlen($chars);
for($i = 0; $i < $len; $i++)
{
$ret_str.= $chars[rand()%$num];
$ret_str.="";
}
return $ret_str;
}
// echo random_password(8);
$passw = random_password(7);
$path="file_upload";
$filenewcon = strstr($file_name,'.');
$now = date("Dgis");
copy( $news_upload ,"$path/$passw$now$filenewcon");
echo $sql="INSERT INTO `news` ( `news_id` , `news_title` , `news_detail` , `news_date` , `news_upload`)
VALUES ('', '$news_title', '$news_detail', '$date_today','$path/$passw$now$filenewcon')";
mysql_db_query("$dbname",$sql);
?>
<script language="javascript">alert("เพิ่มข่าวเรียบร้อยแล้วค่ะ");</script><?
echo "<meta http-equiv=\"refresh\" content=\"0;url=main_news.php\">";
?><style type="text/css">
<!--
body {
background-image: url(../images/11.bmp);
}
-->
</style>
โฟลเดอร์ ชื่อว่า file_upload อยู่ในโฟล์เดอร์ news ไฟล์นี้ก็อยู่ในระดับเดียวกับ โฟล์เดอร์ file_upload
****(news/file_upload)
|
|
|
|
|
Date :
2009-05-13 22:08:22 |
By :
sofear |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
นี้เลยถ้าไม่ได้วันนี้ไม่ต้องกินข้าวเช้าแล้วนะ
Code (PHP)
<?php
$date_today=date("Y-m-d");
$time_today=date("H:i:s");
function random_password($len)
{
srand((double)microtime()*10000000);
$chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
$ret_str = "";
$num = strlen($chars);
for($i = 0; $i < $len; $i++)
{
$ret_str.= $chars[rand()%$num];
$ret_str.="";
}
return $ret_str;
}
// echo random_password(8);
$passw = random_password(7);
$path="file_upload";
$filenewcon = strstr($_FILES["news_upload"]["name"],'.');
$now = date("Dgis");
//echo $_FILES["news_upload"]["tmp_name"];
//echo $filenewcon;
if(copy($_FILES["news_upload"]["tmp_name"] ,$path . "/" . $passw . $now . $filenewcon))
{
echo '<script language="javascript">alert("เพิ่มข่าวเรียบร้อยแล้วค่ะ");</script>';
//add db
$sql="INSERT INTO `news` ( `news_id` , `news_title` , `news_detail` , `news_date` , `news_upload`)
VALUES ('', '$news_title', '$news_detail', '$date_today','$path/$passw$now$filenewcon')";
mysql_db_query("$dbname",$sql);
}
?>
|
|
|
|
|
Date :
2009-05-13 22:47:49 |
By :
melodyApinan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
นี้เลยถ้าไม่ได้วันนี้ไม่ต้องกินข้าวเช้าแล้วนะ
^
โหดวุ้ย อย่างนี้ต้องเปลี่ยนไปกินบะหมี่แทน 555
|
|
|
|
|
Date :
2009-05-13 22:58:44 |
By :
num |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ดีกว่ากินบะหมี่ กินข้าวสวยดีกว่า
|
|
|
|
|
Date :
2009-05-13 23:15:38 |
By :
plakrim |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เหอะๆ ถึงให้กินผมก็ไม่กินหรอกครับเพราะผมกินข้าวเที่ยงกะข้าวเย็นแ่ค่นั้นอะ
หุหุหุ
|
|
|
|
|
Date :
2009-05-13 23:28:27 |
By :
melodyApinan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เออนะผมก็กินแต่ข้าวบ่ายกับข้าวดึกอะนะ
|
|
|
|
|
Date :
2009-05-13 23:44:53 |
By :
plakrim |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอ code แบบเต็มๆๆ ที่สมบูรณ์ พร้อมใช้หน่อยได้ไหมครับ
ขอบคุณครับ
|
|
|
|
|
Date :
2009-05-15 21:32:10 |
By :
evekrub |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คงอยากได้แบบเดิมรึป่าวไม่รู้นะ อะจัดดูอีกรอบอันนี้ครบจิงๆแล้วนะแบบว่าไม่ต้องแก้ไรเลยไปวางใช้งานได้ทันที
Code (newup.php)
<?php
$date_today=date("Y-m-d");
$time_today=date("H:i:s");
function random_password($len)
{
srand((double)microtime()*10000000);
$chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
$ret_str = "";
$num = strlen($chars);
for($i = 0; $i < $len; $i++)
{
$ret_str.= $chars[rand()%$num];
$ret_str.="";
}
return $ret_str;
}
// echo random_password(8);
$passw = random_password(7);
$path="file_upload";
$filenewcon = strstr($_FILES["news_upload"]["name"],'.');
$now = date("Dgis");
//echo $_FILES["news_upload"]["tmp_name"];
//echo $filenewcon;
if(copy($_FILES["news_upload"]["tmp_name"] ,$path . "/" . $passw . $now . $filenewcon))
{
echo '<script language="javascript">alert("เพิ่มข่าวเรียบร้อยแล้วค่ะ");</script>';
//add db
$sql="INSERT INTO `news` ( `news_id` , `news_title` , `news_detail` , `news_date` , `news_upload`)
VALUES ('', '$news_title', '$news_detail', '$date_today','$path/$passw$now$filenewcon')";
mysql_db_query("$dbname",$sql);
}else{
echo "ไม่สามารถอัพโหลดไฟล์ได้ค่ะ";
}
?>
ส่วนนี้โค้ดฟอร์มอัพโหลด
Code (upload.html)
<form method=post action="newup.php" enctype="multipart/form-data">
<input type="file" name="news_upload" onchange="submit();">
</form>
|
|
|
|
|
Date :
2009-05-15 22:49:14 |
By :
melodyApinan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เข้ามาหาความรู้ด้วยคน
เจอปัญหาแบบเดียวกันเลยค่ะ
ทำตามวิธีคุณ Nu.. ได้แล้วค่ะ
ขอบคุณมากนะคะ
|
|
|
|
|
Date :
2009-08-21 10:36:30 |
By :
Nu_AeY |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้าจะให้อัฟรูปภาพได้หลายๆๆรูปต้องแก้ยังไงอะครับ ลองแล้วไม่ได้สักที
|
|
|
|
|
Date :
2012-08-17 13:58:44 |
By :
KLA |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|