|
|
|
รบกวนวิธีเขียน php upload files หลายไฟล์ โดยฐานข้อมูลแบบแยกตารางครับ |
|
|
|
|
|
|
|
คือผมต้องการอัพโหลดไฟล์ หลายๆ ไฟล์ครับ โดยที่ในฐานข้อมูลแยกตารางเก็บข้อมูล 2 ตารางโดยมี 2ตารางนี้มีความสัมพันธ์กันครับ
แต่เวลาอัพโหลดขึ้นไป แล้วไฟล์เข้าไปใน directory ครบนะครับ แต่เข้าไปดูในฐานข้อมูล ชื่อมันมาอันเดียวครับ
ไม่ทราบว่าผมผิดพลาดตรงไหนครับ รบกวนหน่อยนะครับ
หน้า formสำหรับ upload ครับ
Code (PHP)
<?php
<form action="show_insert.php" method="post" enctype="multipart/form-data" name="News">
<table border="0" width="100%" height="100%" bgcolor="#FFFFFF" cellspacing="1"
align="center">
<tr>
<td width="100%" height="100%" align="center" valign="middle" bgcolor="#FFFFFF"><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="266" align="center" valign="middle"><table
border="0" width="600" height="215" bgcolor="#7CB7F1">
<tr>
<td height="51" colspan="2" align="center" valign="middle" bgcolor="#BFDCF9"><span class="style28">ระบบข่าวและหนังสือราชการ</span></td>
</tr>
<tr>
<td width="25%" height="25" align="center" bgcolor="#BFDCF9"><span class="style28">เรื่อง
:</span></td>
<td width="75%" height="25" bgcolor="#E0EEFC"><input type="text" size="60" name="title"></td>
</tr>
<tr>
<td width="25%" height="25" align="center" bgcolor="#BFDCF9"><span class="style28">เรียน
:</span></td>
<td width="75%" height="25" bgcolor="#E0EEFC"><input name="for_sc" type="text" size="60"></td>
</tr>
<tr>
<td width="25%" height="25" align="center" bgcolor="#BFDCF9"><span class="style28">วันที่
:</span></td>
<td width="75%" height="25" bgcolor="#E0EEFC"><input name="news_date" type="text"
size="20"></td>
</tr>
<tr>
<td width="25%" height="25" align="left" bgcolor="#BFDCF9"><span class="style28"> เลขที่หนังสือ :</span></td>
<td width="75%" height="25" bgcolor="#E0EEFC"><input name="news_number" type="text"
size="20
"></td>
</tr>
<? for($a=0;$a<5;$a++) {?>
<tr>
<td width="25%" height="25" align="center" bgcolor="#BFDCF9"><span class="style28">File :</span></td>
<td width="75%" align="left" height="25" bgcolor="#E0EEFC"><input type="file"name="news_file[<? $a ?>]" size="60" /></td>
</tr>
<? } ?>
<tr>
<td width="25%" bgcolor="#BFDCF9"><span class="style23"></span></td>
<td width="75%" align="center" bgcolor="#E0EEFC"><input name="Submit" type="submit"
id="Submit" value=" คลิ๊กเพื่อ Upload ">
<input type="reset" name="Submit2"
value=" ยกเลิก "></td>
</tr>
</table>
?>
Code (PHP)
<?php
$for_school=$_POST['for_sc'];
$title=$_POST['title'];
$news_date=$_POST['news_date'];
$news_number=$_POST['news_number'];
$news_file=$_FILES['news_file'] ['tmp_name'];
$news_file_name=$_FILES['news_file'] ['name'];
$news_file_size=$_FILES['news_file'] ['size'];
$news_file_type=$_FILES['news_file'] ['type'];
for($i=0;$i<count($news_file_name);$i++){
if($news_file_name[$i]!=""){
/*if ($for_school=="" ){
echo "<h1>กรุณากรอกชื่อโรงเรียน</h1>";
}
elseif ($news_number==""){echo "<h1>กรุณากรอกเลขที่หนังสือราชการด้วย</h1>";}
elseif ($title==""){echo "<h1>กรุณากรอกชื่อเรื่อง</h1>";
}
elseif ($news_date==""){ echo "<h1>กรุณากรอก่วันที่</h1>";
}
else{
//cho"ถึงโรงเรียน : $for_school<br>";
//echo"เรื่อง : $title<br>";
//echo"วันที่ : $news_date<br>";
//echo"ไฟล์ : $news_file_name<br>";*/
copy ($news_file[$i],"../Files_Upload/News/".$news_file_name[$i]) or die ("Copyfile ไม่ได้คราบ");
// ถ้าขึ้น error The file cannot be empty... ให้แก้ไขไฟล์ php.ini แก้ upload_max_filesize = และ post_max_size = แล้ว reboot server
$sql=mysql_db_query($db,"insert into news (News_Nuber,News_For_school,News_Title,News_Date) values('$news_number','$for_school','$title','$news_date')") or die ("ต้องแก้ไขให้ได้ที่ sql");
$news_id=mysql_insert_id();
$sql2=mysql_db_query($db,"insert into news_files (News_File,News_id) value('$news_file_name[$i]','$news_id')") or die ("ไม่ได้ที่ sql2");
}
}
?>
Tag : - - - -
|
|
|
|
|
|
Date :
2009-08-11 16:09:43 |
By :
weenzezar |
View :
3933 |
Reply :
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
รบกวนผู้รู้ ช่วยหน่อยครับ ค้นหาในเว็บแล้ว ดูหนังสือแล้วทำไม่ได้จริงๆ ครับ
ขอรบกวนหน่อยนะครับ
ขอบคุณมากครับ
|
|
|
|
|
Date :
2009-08-11 20:53:22 |
By :
weenzezar |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PageMultiUploadToMySQL1.html)
<html>
<head>
<title>ThaiCreate.Com Tutorial</title>
</head>
<body>
<form name="form1" method="post" action="PageMultiUploadToMySQL2.php" enctype="multipart/form-data">
<input type="file" name="filUpload[]"><br>
<input type="file" name="filUpload[]"><br>
<input type="file" name="filUpload[]"><br>
<input type="file" name="filUpload[]"><br>
<input type="file" name="filUpload[]"><br>
<input type="file" name="filUpload[]"><br>
<input type="file" name="filUpload[]"><br>
<input name="btnSubmit" type="submit" value="Submit">
</form>
</body>
</html>
Code (PageMultiUploadToMySQL2.php)
<html>
<head>
<title>ThaiCreate.Com Tutorial</title>
</head>
<body>
<?
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("mydatabase");
for($i=0;$i<count($_FILES["filUpload"]["name"]);$i++)
{
if($_FILES["filUpload"]["name"][$i] != "")
{
if(copy($_FILES["filUpload"]["tmp_name"][$i],"myfile/".$_FILES["filUpload"]["name"][$i]))
{
//*** Insert Record ***//
$strSQL = "INSERT INTO files ";
$strSQL .="(FilesName) VALUES ('".$_FILES["filUpload"]["name"][$i]."')";
$objQuery = mysql_query($strSQL);
}
}
}
echo "Copy/Upload Complete<br>";
?>
<a href="PageMultiUploadToMySQL3.php">View files</a>
</body>
</html>
Code (PageMultiUploadToMySQL3.php)
<html>
<head>
<title>ThaiCreate.Com Tutorial</title>
</head>
<body>
<?
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("mydatabase");
$strSQL = "SELECT * FROM files";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
?>
<table width="200" border="1">
<tr>
<th width="50"> <div align="center">Files ID </div></th>
<th width="150"> <div align="center">Files Name </div></th>
</tr>
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td><div align="center"><?=$objResult["FilesID"];?></div></td>
<td><center><a href="myfile/<?=$objResult["FilesName"];?>"><?=$objResult["FilesName"];?></a></center></td>
</tr>
<?
}
?>
</table>
<?
mysql_close($objConnect);
?>
</body>
</html>
|
|
|
|
|
Date :
2009-09-18 09:20:44 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
กำลังหาอยู่ด้วยพอดีครับ แต่ว่า
ผมลองทำแล้วมันฟ้อง error function copy ครับ
|
|
|
|
|
Date :
2010-03-09 16:26:28 |
By :
maruk |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อ๋อ ผมได้แล้วคร๊าบ แต่ของผมมันไม่ยักจะเรียงให้เป็น fileID 1,2,3 มันมีแค่ 0 อย่างเดียวเลยคับ
|
|
|
|
|
Date :
2010-03-11 16:16:37 |
By :
maruk |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ ช่วยได้เยอะเลย
|
|
|
|
|
Date :
2010-09-13 14:31:36 |
By :
abilitysai |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณ admin ครับ หามาหลายกระทู้
|
|
|
|
|
Date :
2014-04-30 17:36:52 |
By :
man |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|