สอบถามเกี่ยวกับการเพิ่มข้อมูลลงในฐานข้อมูล แล้วมันแจ้งว่า error in your SQL syntax;
สวัสดีค่ะพี่ๆทุกคน มีเรื่องรบกวนอีกแล้วค่ะ
คือว่าหนูทำฟอร์มรับข้อมูล เมื่อรันแล้ว ก็ลองพิมพ์ข้อมูลลงไป แต่พอกด submit มันแจ้ง error แบบนี้ค่ะ
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 'out (out_no, out_date, out_from, out_to, out_name, out_emp, out_note) VALUES ('1' at line 1
อันนี้เป็นโค้ดค่ะ มันจะมีหน้ารับข้อมูลอีกหน้า คล้ายๆอันนี้แต่ไม่มี error อะไรค่ะ
ฝากพี่ๆช่วยดูให้หน่อยนะคะ
Code (PHP)
<?php require_once('Connections/connect.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
$editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
}
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
$insertSQL = sprintf("INSERT INTO out (out_no, out_date, out_from, out_to, out_name, out_emp, out_note) VALUES (%s, %s, %s, %s, %s, %s, %s)",
GetSQLValueString($_POST['out_no'], "text"),
GetSQLValueString($_POST['out_date'], "text"),
GetSQLValueString($_POST['out_from'], "text"),
GetSQLValueString($_POST['out_to'], "text"),
GetSQLValueString($_POST['out_name'], "text"),
GetSQLValueString($_POST['out_emp'], "text"),
GetSQLValueString($_POST['out_note'], "text"));
mysql_select_db($database_connect, $connect);
$Result1 = mysql_query($insertSQL, $connect) or die(mysql_error());
$insertGoTo = "OutAddSuccess.html";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>ทะเบียนหนังสือรับ</title>
<script src="js/jquery-1.9.1.min.js" type="text/javascript"></script>
<script src="js/jquery.ui.core.js" type="text/javascript"></script>
<script src="js/jquery.ui.datepicker.js" type="text/javascript"></script>
<link href="css/jquery-ui.css" type="text/css" rel="stylesheet" />
<script type="text/javascript">
$(function () {
$("#datepicker").datepicker({ dateFormat: "yy-mm-dd" });
});
</script>
<script language="javascript">
function fncSubmit()
{
if(document.form1.out_no.value == "")
{
alert('กรุณากรอก : เลขที่หนังสือส่ง');
document.form1.out_no.focus();
return false;
}
if(document.form1.out_date.value == "")
{
alert('กรุณากรอก : ลงวันที่');
document.form1.out_date.focus();
return false;
}
if(document.form1.out_from.value == "")
{
alert('กรุณากรอก : จาก');
document.form1.out_from.focus();
return false;
}
if(document.form1.out_to.value == "")
{
alert('กรุณากรอก : ถึง');
document.form1.out_to.focus();
return false;
}
if(document.form1.out_name.value == "")
{
alert('กรุณากรอก : เรื่อง');
document.form1.out_name.focus();
return false;
}
if(document.form1.out_emp.value == "")
{
alert('กรุณากรอก : ผู้ส่ง');
document.form1.out_emp.focus();
return false;
}
document.form1.submit();
}
</script>
</head>
<body>
<form action="<?php echo $editFormAction; ?>" method="post" name="form1" id="form1"onSubmit="JavaScript:return fncSubmit();">
<table align="center">
<td nowrap="nowrap" align="right">เลขที่หนังสือส่ง:</td>
<td><input type="text" name="out_no" value="" size="32" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">ลงวันที่:</td>
<td><input type="text" id="datepicker" name="out_date" value="" size="32" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">จาก:</td>
<td><input type="text" name="out_from" value="" size="32" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">ถึง:</td>
<td><input type="text" name="out_to" value="" size="32" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right" valign="top">เรื่อง:</td>
<td><textarea name="out_name" cols="50" rows="5"></textarea></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">ผู้ส่ง:</td>
<td><input type="text" name="out_emp" value="" size="32" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right" valign="top">หมายเหตุ:</td>
<td><textarea name="out_note" cols="50" rows="5"></textarea></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right"> </td>
<td><input type="submit" value="ส่งข้อมูล" /></td>
</tr>
</table>
<input type="hidden" name="MM_insert" value="form1" />
</form>
<p> </p>
</body>
</html>
Tag : PHP
ประวัติการแก้ไข 2013-03-06 16:45:01
Date :
2013-03-06 16:40:47
By :
gosling
View :
623
Reply :
2
Load balance : Server 04