|
|
|
รบกวนสอบถาม เรื่อง Insert ข้อมูลค่ะ มันไม่เข้าฐานข้อมูล |
|
|
|
|
|
|
|
หน้าฟอร์ม
<html>
<head>
<title>ThaiCreate.Com PHP & MySQL Tutorial</title>
</head>
<body>
<p>
<?php
//index.php
$objConnect = mysql_connect("localhost","root","123456") or die("Error Connect to Database");
$objDB = mysql_select_db("project");
mysql_query("SET character_set_results=utf8");
mysql_query("SET character_set_client=utf8");
mysql_query("SET character_set_connection=utf8");
?>
</p>
<p><center>เพิ่มข้อมูล</center></p>
<form action="uploadpic2.php" method="post" enctype="multipart/form-data" name="frmAdd">
<table width="75%" border="1" align="center" cellpadding="0" cellspacing="0">
<tr>
<th height="33" colspan="2" align="left" bgcolor="#00CC99" scope="col">อัพโหลดเอกสาร</th>
</tr>
<tr>
<th height="41" colspan="2" bgcolor="#B3FFEC" scope="col"><input name="fac_id" type="hidden" id="fac_id" value="<?php echo $fac_id=2 ;?>">
<select name="item_id">
<option value=""><-- กรุณาเลือก --></option>
<?
$strSQL = "SELECT * FROM item ORDER BY item_id ASC";
$objQuery = mysql_query($strSQL);
while($objResuut = mysql_fetch_array($objQuery))
{
?>
<option value="<?=$objResuut["item_id"];?>"><?=$objResuut["item_name"]." - ".$objResuut["Name"];?></option>
<?
}
?>
</select>
</th>
</tr>
<tr>
<th height="41" bgcolor="#B3FFEC" scope="col">รูปที่ 1</th>
<th bgcolor="#B3FFEC" scope="col"><input type="file" name="fileUpload[]" id="fileUpload[]"></th>
</tr>
<tr>
<th height="41" bgcolor="#B3FFEC" scope="col">รูปที่ 2</th>
<th bgcolor="#B3FFEC" scope="col"><input type="file" name="fileUpload[]" id="fileUpload[]"></th>
</tr>
<tr>
<th height="41" bgcolor="#B3FFEC" scope="col">รูปที่ 3</th>
<th bgcolor="#B3FFEC" scope="col"><input type="file" name="fileUpload[]" id="fileUpload[]"></th>
</tr>
<tr>
<th height="41" bgcolor="#B3FFEC" scope="col">รูปที่ 4</th>
<th bgcolor="#B3FFEC" scope="col"><input type="file" name="fileUpload[]" id="fileUpload[]"></th>
</tr>
</table>
<input name="hdnLine" type="hidden" value="4">
<p>
<center><input type="submit" name="submit" value="บันทึก">
<input type="reset" name="submit2" value="เคลียร์">
</center>
</p>
<p> </p>
</form>
</body>
</html>
Code (PHP)
<html>
<head>
<title>บันทึกรูปภาพ</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css">
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
</style>
</head>
<body>
<p>
<?php
$objConnect = mysql_connect("localhost","root","123456") or die("Error Connect to Database");
$objDB = mysql_select_db("project");
mysql_query("SET character_set_results=utf8");
mysql_query("SET character_set_client=utf8");
mysql_query("SET character_set_connection=utf8");
for($i=0;$i<=(int)($_POST["hdnLine"]);$i++)
{
$Str_file = explode(".",$_FILES['filUpload']['name'][$i]); // แยกชื่อไฟล์ด้วย "." ค่าที่ได้จะเป็น Array ครับ
echo $Str_file['0']."<br>";
$newname= date("Ymdhm")."-".$i.".".$Str_file['1'];
echo $newname."<br>";
if($_FILES["fileUpload"]["name"][$i] != "")
{
if(move_uploaded_file($_FILES["fileUpload"]["tmp_name"][$i],"myfile/".$_FILES["fileUpload"]["name"][$i]))
{
}}}
//*** Insert Record ***//
$strSQL = "INSERT INTO uploadpic";
$strSQL .="(item_id,fac_id,filUpload,filUpload1,filUpload2,filUpload3,filUpload4) VALUES ('".$_POST["item_id"]."','".$_POST["fac_id"]."','".$_FILES["fileUpload"]["name"][0]."','".$_FILES["fileUpload"]["name"][1]."','".$_FILES["fileUpload"]["name"][2]."','".$_FILES["fileUpload"]["name"][3]."','".$_FILES["fileUpload"]["name"][4]."')";
$objQuery = mysql_query($strSQL);
if($objQuery)
{
echo "Save Done.";
}
else
{
echo "Error Save [".$strSQL."]";
}
mysql_close();
?>
บันทึกข้อมูลสำเร็จ รอสักครู่เพื่อกลับสู่หน้าหลัก</a></p>
</body>
</html>
Tag : PHP
|
ประวัติการแก้ไข 2019-04-02 11:00:19 2019-04-02 11:01:23 2019-04-02 11:28:04
|
|
|
|
|
Date :
2019-04-02 09:39:14 |
By :
cake |
View :
556 |
Reply :
7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตกลงจะใช้ pdo หรือ mysql เฉยๆ เนี่ย
|
|
|
|
|
Date :
2019-04-02 10:37:57 |
By :
Pong Thep |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ในตารางไม่เห็นมีคอลัมภ์ filUpload4 เลย
|
|
|
|
|
Date :
2019-04-02 11:22:09 |
By :
Nebula |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
echo "Error Save [".$strSQL."]<br>" . mysql_error() ;
เพิ่มเข้าไปหน่อย จะได้รู้ว่ามันเออเร่อร์อะไร ผิดผลาดตรงไหน
เรายังไม่ชำนาญก็ต้องอาศัยตัวช่วย บางทีอ่านแค่ statement อย่างเดียว ตามันลาย
|
|
|
|
|
Date :
2019-04-02 12:22:41 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|