You have an error in your SQL syntax เเก้ไงดีค่ะ ช่วยหน่อยค่ะ
พอกดส่งข้อมูลก็ขึ้นข้อความนี้เลยค่ะ เเก้อย่างไงดี เเก้มาหลายวันเเล้ว ไม่ได้เลย รบกวนพี่ๆช่วยหน่อยค่ะ
Code
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ' 'ร้องเท้าื nike', 'ของใหม่', 100, '2013-1-1', 0' at line 2
<?
ob_start();
session_start();
if($_SESSION["adminlogin"]=="")
{
header('location:index.php');
exit();
}
//============ Start Session และทำการเรียก Function ติดต่อฐานข้อมูล
require_once('../connect/connect.php');
require_once('../connect/function.php');
?>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" href="../css/styles.css" type="text/css">
<title>Auction: New Item</title>
<div align="center"><br>
<table cellspacing=1 cellpadding=4 width="68%" bgcolor=#CCCCCC border=0 align="center" height="10">
<tbody>
<tr bgcolor=#e5e5e5>
<td width="100%" bgcolor="#FFFFFF"> <div align="center"></div>
<table cellspacing=1 cellpadding=4 width="100%" border=0 align="center" height="10">
<tbody>
<tr bgcolor=#e5e5e5>
<td width="35%" bgcolor="#FFFFFF"> <div align="left"><b><img src="../image/allrowto.gif" width="11" height="11" align="absbottom">
เพิ่มรายการประมูลสินค้า</b></div></td>
<td width="22%" align=middle bgcolor="#FFFFFF"> <div align="left">
</div></td>
<td width="43%" bgcolor="#FFFFFF"> <div align="right"><a href="head.php">กลับไปหน้าหลัก</a></div></td>
</tr>
</tbody>
</table></td>
</tr>
</tbody>
</table>
</div>
</head>
<body>
<?php
if($_POST) {
if(get_magic_quotes_gpc()) {
$_POST['item_name'] = stripslashes($_POST['item_name']);
$_POST['description'] = stripslashes($_POST['description']);
}
$item_name = htmlspecialchars($_POST['item_name'], ENT_QUOTES);
$description = nl2br(htmlspecialchars($_POST['description'], ENT_QUOTES));
$price = $_POST['starting_price'];
//ที่ฟอร์มเราเรียงลำดับอินพุทแบบอาร์เรย์ เป็น วัน-เดือน-ปี
//แต่การจัดเก็บข้อมูลของ MySQL ต้องเป็นรูปแบบ ปี-เดือน-วัน
//ดังนั้นเราจึงนำอาร์เรย์ของอินพุทมาเรียงลำดับแบบย้อนกลับ
$_POST['date'] = array_reverse($_POST['date']);
$end_date = implode("-", $_POST['date']); //รวมกันให้เป็น ปี-เดือน-วัน
$end_time = strtotime($end_date);
$cur_time = strtotime("now");
$errmsg = "";
if(empty($item_name) || empty($description) || empty($price)) {
$errmsg = "ท่านใส่ข้อมูลไม่ครบ";
}
else if(!checkdate($_POST['date'][1], $_POST['date'][2], $_POST['date'][0])) {
$errmsg = "วันเดือนปีที่กำหนด ไม่ถูกต้อง";
}
else if($end_time < $cur_time) {
$errmsg = "วันสิ้นสุดต้องอยู่ถัดจากวันปัจจุบัน";
}
else if(!is_numeric($price)) {
$errmsg = "ราคาเริ่มต้นไม่ถูกต้อง";
}
else if($_FILES['file']['error'] != 0) {
$errmsg = "เกิดข้อผิดพลาดในการอัปโหลดภาพ";
}
else if($_FILES['file']['error'] == 0) {
$type = strtolower($_FILES['file']['type']);
$pattern = "(jpe?g)|(png)|(gif)";
if(!eregi($pattern, $type)) {
$errmsg = "ต้องเป็นภาพชนิด .jpg หรือ .png หรือ .gif เท่านั้น";
}
else if($_FILES['file']['size'] > 100000) {
$errmsg = "ขนาดของภาพต้องไม่เกิน 100 KB";
}
}
if($errmsg != "") {
echo "ข้อผิดพลาด: $errmsg
<p /><a href=\"javascript: history.back()\">ย้อนกลับไปแก้ไข</a></font>";
exit;
}
$sql = "INSERT INTO item VALUES
(0, $MemberID, '$item_name', '$description', $price, '$end_date', 0);";
@mysql_query($sql) or die(mysql_error());
$item_id = mysql_insert_id(); //อ่านค่า id ของรายการล่าสุดที่เพิ่มเข้าไป
$type = $_FILES['file']['type'];
$upfile = $_FILES['file']['tmp_name'];
$file = fopen($upfile, "r");
$content = fread($file, filesize($upfile));
$content = addslashes($content);
fclose($file);
$sql = "INSERT INTO img VALUES
(0, $item_id, '$type', '$content');";
@mysql_query($sql) or die(mysql_error());
echo "<p align=center>บันทึกข้อมูลแล้ว</p>";
}
?>
<p /><h3 align="center">เพิ่มรายการเปิดประมูล</h3></p>
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post" enctype="multipart/form-data" name="form1" id="form1">
<table border="0" cellspacing="3" cellpadding="1" align="center">
<tr>
<td>ชื่อสินค้า</td>
<td><label>
<input name="item_name" type="text" id="item_name" />
</label></td>
</tr>
<tr>
<td>รายละเอียดสินค้า</td>
<td><label>
<textarea name="description" cols="30" rows="3" id="description"></textarea>
</label></td>
</tr>
<tr>
<td>วันที่ปิดประมูล</td>
<td>
<select name="date[]" id="date[]">
<?php
for($d = 1; $d <= 31; $d++) {
echo "<option value=$d>$d</option>";
}
?>
</select>
<select name="date[]" id="date[]">
<?php
for($i = 1; $i <= 12; $i++) {
echo "<option value=$i>$i</option>";
}
?>
</select>
<select name="date[]" id="date[]">
<?php
$cur_year = date('Y');
$year1 = $cur_year;
$year2 = $cur_year + 1;
for($y = $year1; $y <= $year2; $y++) {
echo "<option value=$y>" . ($y + 543) . "</option>";
}
?>
</select> (ว/ด/ป)
</td>
</tr>
<tr>
<td>ราคาเริ่มต้น</td>
<td><label>
<input name="starting_price" type="text" id="starting_price" size="10" />
</label></td>
</tr>
<tr>
<td>รูปภาพ</td>
<td><label>
<input type="file" name="file" />
</label></td>
</tr>
<tr>
<td> </td>
<td><label>
<input type="submit" name="Submit" value="ส่งข้อมูล" />
</label></td>
</tr>
</table>
</form>
</body>
อันนี้รูปตารางในฐานข้อมูลนะค่ะ
Tag : PHP, MySQL
Date :
2012-06-29 09:52:02
By :
poiiz
View :
896
Reply :
2
ได้เเล้วค่ะ ขอบคุณมากก
Date :
2012-06-29 17:35:56
By :
poiiz
Load balance : Server 03