|
|
|
ช่วยทีครับ insert 2 ตาราง รูปภาพมี 2 แต่ลงฐานข้อมูลแค่ 1 |
|
|
|
|
|
|
|
ปัญหาคือเวลา insert แล้วมัน ขึ้น Duplicate entry ครับ
ข้อมูลลงหมดแต่ รูปลงแค่ 1 ครับ มันต้องเป็น 2
ตาตราง company มี CompanyID pk Auto Increment
ตาราง picture มี pictureID pk Auto Increment
แล้วก็ CompanyID fk
Code (PHP)
<td > <div class="fileupload fileupload-new " data-provides="fileupload">
<div class="fileupload-preview fileupload-exists thumbnail" style="max-width: 380px; max-height: 180px; line-height: 20px;"></div>
<div>
<span class="btn btn-file"><span class="fileupload-new">Select image</span><span class="fileupload-exists">Change</span>
<input type="file" name="filUpload[]" >
</span>
<a href="#" class="btn fileupload-exists" data-dismiss="fileupload">Remove</a>
</div>
</div>
</td>
<td > <div class="fileupload fileupload-new " data-provides="fileupload">
<div class="fileupload-preview fileupload-exists thumbnail" style="max-width: 380px; max-height: 180px; line-height: 20px;"></div>
<div>
<span class="btn btn-file"><span class="fileupload-new">Select image</span><span class="fileupload-exists">Change</span>
<input type="file" name="filUpload[]">
</span>
<a href="#" class="btn fileupload-exists" data-dismiss="fileupload">Remove</a>
</div>
</div>
</td>
Code (PHP)
<?php session_start();
if($_SESSION['AdminID'] =="" )
{
echo "Please Login To System....";
echo "<meta http-equiv='refresh' content='2;URL=index.php'>";
exit();
}
require("config.inc.php");
//*** Add Condition ***//
$strSQL = "INSERT INTO Company";
$strSQL .="(CompanyID, AdminID,
CompanyName, CompanyAddress,
CatBusiness, CatEnterprise,
Location, Zone,
Tel,Orientation,
Paper ,Closing,
Certificate, EvaluationTraining,
mentor, InternshipPeriod,
Accommodation, Food,
Security, Allowance,
Uniform, PostTime, Active) ";
$strSQL .="VALUES ";
$strSQL .="('0','".$_SESSION['AdminID']."' ";
$strSQL .=",'".$_POST["txtCompanyName"]."','".$_POST["CompanyAddress"]."' ";
$strSQL .=",'".$_POST["CatBusiness"]."','".$_POST["corporation"]."' ";
$strSQL .=",'".$_POST["Location"]."','".$_POST["zone"]."' ";
$strSQL .=",'".$_POST["txtCompanyContact"]."','".$_POST["Orientation"]."' ";
$strSQL .=",'".$_POST["Paper"]."','".$_POST["Closing"]."' ";
$strSQL .=",'".$_POST["Certificate"]."','".$_POST["EvaluationTraining"]."' ";
$strSQL .=",'".$_POST["mentor"]."','".$_POST["InternshipPeriod"]."' ";
$strSQL .=",'".$_POST["Accommodation"]."','".$_POST["Food"]."' ";
$strSQL .=",'".$_POST["Security"]."','".$_POST["Allowance"]."' ";
$strSQL .=",'".$_POST["Uniform"]."', NOW(), '".$_POST["Active"]."') ";
$objQuery = mysql_query($strSQL) or die(mysql_error());
$CMID = mysql_insert_id();
for($i=0;$i<count($_FILES["filUpload"]["name"]);$i++)
{
if(trim($_FILES["filUpload"]["tmp_name"][$i]) != "")
{
if(move_uploaded_file($_FILES["filUpload"]["tmp_name"][$i],"./img/profileimg/".$_FILES["filUpload"]["name"][$i]) )
{
$SQLPIC = "INSERT INTO picture (PictureID, CompanyID, ImgName) VALUES (0, $CMID ";
$SQLPIC .=",'img/profileimg/".$_FILES["filUpload"]["name"][$i]."') ";
@mysql_query($SQLPIC) or die(mysql_error());
}
}
}
if($objQuery)
{
$Save ="<div class='text-success'><h3> บันทึก เสร็จ. </h3></div> ";
session_register("Save");
header("location:addcompany.php");
}
else
{
$error = "<div class='text-error'> มีข้อผิดพลาดในการบันทึกโปรดตรวจสอบ </div> ";
session_register("error");
header("location:addcompany.php");
}
?>
Tag : PHP, MySQL
|
ประวัติการแก้ไข 2013-10-08 12:50:25
|
|
|
|
|
Date :
2013-10-08 12:49:10 |
By :
kanokpong |
View :
855 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จาก code แล้ว ต้องมี <input type="file" name="filUpload[]"> อีกชุดหนึ่ง หรือเปล่าครับ
ถ้ามี 1 ชุด filUpload[] ก็จะทำงานแค่รอบเดียวนะ
|
|
|
|
|
Date :
2013-10-08 15:27:45 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ชื่อแอตทริบิ้ว name="filUpload[]" มันซํ้ากันป่าวถ้าหมายถึงมี ซ้ายและขวา
1.name="filUpload1[]"
2.name="filUpload2[]"
ถ้าจะแยกฝั่งนะจ๊ะ
และถ้าข้อมูลมีแค่2 รูปซ้ายขวาแบบที่ดูจากปุ่มSelect ก็ไม่ต้องarrayก็ได้มั่ง ลองดูจ้า
|
ประวัติการแก้ไข 2013-10-09 11:19:03 2013-10-09 11:20:54
|
|
|
|
Date :
2013-10-09 11:18:28 |
By :
kenghockey |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|