|
|
|
ปัญหาคือที่กำหนดไว้ที่ code หลังลงค่าลงฐานข้อมูล history ได้ผลลัพธ์ตามรูปหมายเลข 1 สิ่งที่ควรจะเป็นตามรูปหมายเลข 3 และฐานข้อมูล ้history2 ได้ผลลัพธ์ตามรูปหมายเลข 2 สิ่งที่ควรจะเป็นตามรูปหมายเลข 4 แนะนำให้ทีเขียนผิดพลาดส่วนไหน |
|
|
|
|
|
|
|
https://www.img.in.th/image/7IrA
จากรูปปัญหาคือที่กำหนดไว้ที่ code หลังลงค่าลงฐานข้อมูล
history ได้ผลลัพธ์ตามรูปหมายเลข 1 สิ่งที่ควรจะเป็นตามรูปหมายเลข 3 และฐานข้อมูล
้history2 ได้ผลลัพธ์ตามรูปหมายเลข 2 สิ่งที่ควรจะเป็นตามรูปหมายเลข 4
แนะนำให้ทีเขียนผิดพลาดส่วนไหน
<form name="form1" method="POST" enctype="multipart/form-data">
<td>Accessories with computer<br>
<input type="checkbox" name="accessories[]2" value="power adapter">
Power Adapter
<input type="text" name="item_price[]" /><br>
<input type="checkbox" name="accessories[]3" value="power cord">
Power Cord <input type="text" name="item_price[]" /><br>
<input type="checkbox" name="accessories[]4" value="monitor">
Monitor<input type="text" name="item_price[]" /><br>
<input type="checkbox" name="accessories[]5" value="keyboard">
Keyboard<input type="text" name="item_price[]" /><br>
<input type="checkbox" name="accessories[]6" value="mouse">
Mouse<input type="text" name="item_price[]" /><br>
<input type="checkbox" name="accessories[]7" value="<?= $_POST['other'];?>" >
Other
<input type="text" size="10" name="other[]" class="input-text" /><br><br>
</td>
</tr>
Code (PHP)
[php]<?php
$arr = array($_POST['accessories']);
if(isset($_POST))
{
$accessories = implode(" ",$arr);
$objConnect = mysql_connect("localhost","root","123456") or die("Error Connect to Database");
$objDB = mysql_select_db("clinic");
mysql_query("SET character_set_results=TIS620");//ตั้งค่าการดึงข้อมูลออกมาให้เป็น tis620
mysql_query("SET character_set_client=TIS620");//ตั้งค่าการส่งข้อมุลลงฐานข้อมูลออกมาให้ เป็น tis620
mysql_query("SET character_set_connection=TIS620");//ตั้งค่าการติดต่อฐานข้อมูลให้เป็น tis620
mysql_query("SET NAMES TIS620");
$i=date("l jS \of F Y h:i:s A") ;
echo $_POST["day"]="11-05-2559";
$_POST["id_stu"]=5;
$itemCount=10;
$itemValues=0;
$query = "INSERT INTO history (id_stu,item_name,item_price,day) VALUES ";
$queryValue = "";
for($i=0;$i<$itemCount;$i++) {
if(!empty($_POST["accessories"][$i]) || !empty($_POST["id_stu"][$i]) || !empty($_POST["day"][$i])) {
$itemValues++;
if($queryValue!="") {
$queryValue .= ",";
}
$queryValue .= "('" . $_POST["id_stu"] . "','" . $_POST["accessories"][$i] . "', '" . $_POST["item_price"][$i] . "','" . $_POST["day"][$i] . "')";
}
}
$sql = $query.$queryValue;
if($itemValues!=0) {
$result = mysql_query($sql);
if(!empty($result)) $message = "Added Successfully.";
}
$query = "DELETE FROM history WHERE item_name= 'Array' ";
$objQuery = mysql_query($query);
if($objQuery)
{
echo "Record Deleted.";
}
else
{
echo "Error Delete [".$strSQL."]";
}
$query = "INSERT INTO history2 (id_stu,day,other) VALUES ";
$queryValue = "";
for($i=0;$i<$itemCount;$i++) {
if(!empty($_POST["id_stu"][$i]) || !empty($day[$i]) || !empty($_POST["other"][$i])) {
$itemValues++;
if($queryValue!="") {
$queryValue .= ",";
}
$queryValue .= "('" . $_POST["id_stu"] . "','" . $day[$i] . "','" . $_POST["other"][$i] . "')";
}
}
$sql = $query.$queryValue;
if($itemValues!=0) {
$result = mysql_query($sql);
if(!empty($result)) $message = "Added Successfully.";
}
}
else{ echo "error";}
////////////////*/
?>
<input type="submit" size="10" name="others3" class="input-text" />
</form>
Tag : PHP, MySQL, JavaScript
|
|
|
|
|
|
Date :
2016-05-11 14:33:42 |
By :
mininova |
View :
891 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เรียบเรียงใหม่ ทำรุปเล็กๆ เรียงต่อกันลงมาทีละรูป จะได้อ่านง่ายกว่านะ เหอะๆ
|
|
|
|
|
Date :
2016-05-11 16:32:17 |
By :
Kin-Kee |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|