|
|
|
มีปัญหาในการบันทึกข้อมูล โดยใช้คำสั่งของ Dreamweaver CS5 คะ |
|
|
|
|
|
|
|
อันนี้เป็นฟิลด์ของตาราง insert
อันนี้เป็นฟิลด์ตาราง status
ในตาราง insert มี PK คือ insert_id มี FK คือ status_id หนูไม่แน่ใจว่าออกแบบฐานข้อมูลผิดหรือว่าโค้ดผิด รบกวนพี่ๆหน้อยนะคะ
Code (PHP)
<?php require_once('Connections/DbConnect.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"] == "AddPForm")) {
$insertSQL = sprintf("INSERT INTO ``insert`` (book_no, book_no_recevied, date_recevied, date_export, status_id) VALUES (%s, %s, %s, %s, %s)",
GetSQLValueString($_POST['book_no'], "text"),
GetSQLValueString($_POST['book_no_recvied'], "text"),
GetSQLValueString($_POST['date_recevied'], "text"),
GetSQLValueString($_POST['date_export'], "text"),
GetSQLValueString($_POST['status_id'], "int"));
mysql_select_db($database_DbConnect, $DbConnect);
$Result1 = mysql_query($insertSQL, $DbConnect) or die(mysql_error());
$insertGoTo = "Add_succ.php";
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>Untitled Document</title>
<link href="flick/jquery-ui-1.8.22.custom.css" rel="stylesheet" type="text/css">
<script src="SpryAssets/SpryValidationRadio.js" type="text/javascript"></script>
<script src="SpryAssets/SpryValidationTextField.js" type="text/javascript"></script>
</head>
<body>
<form name="AddPForm" id="AddPForm" method="POST" action="<?php echo $editFormAction; ?>">
<table width="950" border="0" align="center">
<tr>
<td scope="row" width="217"> </td>
<td scope="row" width="347"> </td>
<td scope="row" width="50"> </td>
<td scope="row" width="318"> </td>
</tr>
<tr>
<td colspan="3"><h2>บันทึกข้อมูล</h2></td>
<td> </td>
</tr>
<tr>
<?
//วันเดือนปี
?>
<td><p>วัน/เดือน/ปี(ที่รับเอกสาร)</p></td>
<td>
<input type="text" name="date_recevied" id="date_recevied" />
<div id="Calendar">
<script type="text/javascript" src="jquery-1.7.2.js"></script>
<script type="text/javascript" src="jquery-ui-1.8.22.custom.js"></script>
<script> $(function(){
$("#date_recevied").datepicker();});
</script></div></td>
<td width="50" height="27"> </td>
<td width="318"> </td>
</tr>
<tr>
<td><p>วัน/เดือน/ปี(ที่ส่งเอกสาร)</p></td>
<td><input type="text" name="date_export" id="date_export" />
<div id="Calendar">
<script type="text/javascript" src="jquery-1.7.2.js"></script>
<script type="text/javascript" src="jquery-ui-1.8.22.custom.js"></script>
<script> $(function(){
$("#date_export").datepicker();});
</script></div></td>
<td> </td>
<td> </td></tr>
<tr><td><p>เลขที่หนังสือ</p></td>
<td><input type="text" name="book_no" id="book_no"/></td>
<td> </td>
<td> </td></tr>
<tr><td><p>เลขที่หนังสือรับ</p></td>
<td><input type="text" name= "book_no_recvied" id="book_no_recvied" /></td>
<td> </td>
<td> </td></tr>
<tr><td><p>สถานะ</p></td>
<td><label><input type="radio" name="status_id" value="radio" id="1">ได้รับแล้ว</label>
<label><input type="radio" name="status_id" value="radio" id="2">รออนุมัติ</label>
<label><input type="radio" name="status_id" value="radio" id="3"> ส่งออกแล้ว</label><br></td>
<td> </td>
<td> </td></tr>
<tr><td> </td>
<td><input type="submit" name="submit" id="submit" value="บันทึกข้อมูล" />
<input type="reset" name="reset" id="reset" value="ล้างข้อมูล" /></td>
<td> </td>
<td> </td></tr>
</table>
<span id="showdetail"></span>
<input type="hidden" name="MM_insert" value="AddPForm" />
</form>
</body>
</html>
Tag : PHP, MySQL, HTML/CSS, JavaScript, Ajax, jQuery
|
|
|
|
|
|
Date :
2012-08-12 23:03:06 |
By :
custer |
View :
1581 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เจ้าเก่าปัญหาเยอะ แหะๆ
|
|
|
|
|
Date :
2012-08-12 23:04:09 |
By :
custer |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
รู้สึกว่าน่าจะต้องเขียนคำสั่ง insert ที่ตาราง status ด้วยน่ะค่ะ แต่ถ้าใช้radio เขียนแบบนี้ก็ได้ค่ะ
<tr>
<td height="21" valign="top" class="style63" align="right" >ประเภทงานวิจัย :</td>
<td colspan="2"align="left">
<input type="radio" name="radResearchTopic" value="Thai." checked="checked"/>Thai.<br />
<input type="radio" name="radResearchTopic" value="Eng."/> Eng.<br /></td>
</tr>
ลองดูน่ะค่ะ
|
|
|
|
|
Date :
2012-08-13 00:59:58 |
By :
phonyamon |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
และก็ตาราง status ต้องมีฟิวส์ insert_id เป็น FK ด้วยน่ะค่ะ
|
|
|
|
|
Date :
2012-08-13 01:03:58 |
By :
phonyamon |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|