|
|
|
ผิดพลาดตรงไหนบอกหน่อยครับ เป็น code ตอบกระทู้ครับ ไม่สามารถตอบได้ ไม่ขึ้นอะไรเลยแต่มีข้อมูลในฐานข้อมูล |
|
|
|
|
|
|
|
เป็น code ตอบกระทู้ครับ ไม่สามารถตอบได้ ไม่ขึ้นอะไรเลยแต่มีข้อมูลในฐานข้อมูล
กดส่งคำตอบแล้วมันขึ้นว่า Column 'RefQid' cannot be null
Code (PHP)
<?php require_once('Connections/apartment.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 tbanswer (ADetail, AName, AEmail, ADate, RefQid) VALUES (%s, %s, %s, %s, %s)",
GetSQLValueString($_POST['ADetail'], "text"),
GetSQLValueString($_POST['AName'], "text"),
GetSQLValueString($_POST['AEmail'], "text"),
GetSQLValueString($_POST['ADate'], "date"),
GetSQLValueString($_POST['RefQid'], "int"));
mysql_select_db($database_apartment, $apartment);
$Result1 = mysql_query($insertSQL, $apartment) or die(mysql_error());
$insertGoTo = "answer_save.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}
$colname_DetailRS1 = "-1";
if (isset($_GET['recordID'])) {
$colname_DetailRS1 = $_GET['recordID'];
}
mysql_select_db($database_apartment, $apartment);
$query_DetailRS1 = sprintf("SELECT * FROM tbquestion WHERE Qid = %s", GetSQLValueString($colname_DetailRS1, "int"));
$DetailRS1 = mysql_query($query_DetailRS1, $apartment) or die(mysql_error());
$row_DetailRS1 = mysql_fetch_assoc($DetailRS1);
$totalRows_DetailRS1 = mysql_num_rows($DetailRS1);
$colname_Recordset2 = "-1";
if (isset($_GET['recordID'])) {
$colname_Recordset2 = $_GET['recordID'];
}
mysql_select_db($database_apartment, $apartment);
$query_Recordset2 = sprintf("SELECT * FROM tbanswer WHERE RefQid = %s", GetSQLValueString($colname_Recordset2, "int"));
$Recordset2 = mysql_query($query_Recordset2, $apartment) or die(mysql_error());
$row_Recordset2 = mysql_fetch_assoc($Recordset2);
$totalRows_Recordset2 = mysql_num_rows($Recordset2);
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Untitled Document</title>
</head>
<body>
<p><?php echo $row_DetailRS1['QTitle']; ?></p>
<table width="800" border="0">
<tr>
<td><p><?php echo $row_DetailRS1['QDetail']; ?></p>
<p>โดย:<?php echo $row_DetailRS1['QName']; ?>อีเมล:<?php echo $row_DetailRS1['QEmail']; ?>เมื่อ:<?php echo $row_DetailRS1['QDate']; ?></p></td>
</tr>
</table>
<p> </p>
<?php do { ?>
<table width="800" border="0">
<tr>
<td><?php echo $row_Recordset2['ADetail']; ?></td>
</tr>
<tr>
<td>โดย:<?php echo $row_Recordset2['AName']; ?>อีเมล:<?php echo $row_Recordset2['AEmail']; ?>เมื่อ:<?php echo $row_Recordset2['ADate']; ?></td>
</tr>
</table>
<?php } while ($row_DetailRS1 = mysql_fetch_assoc($DetailRS1)); ?>
<p> </p>
<form method="post" name="form1" action="<?php echo $editFormAction; ?>">
<table align="center">
<tr valign="baseline">
<td nowrap align="right" valign="top">รายละเอียด</td>
<td><textarea name="ADetail" cols="50" rows="5"></textarea></td>
</tr>
<tr valign="baseline">
<td nowrap align="right">ชื่อผู้ตอบ</td>
<td><input type="text" name="AName" value="" size="32"></td>
</tr>
<tr valign="baseline">
<td nowrap align="right">อีเมล</td>
<td><input type="text" name="AEmail" value="" size="32"></td>
</tr>
<tr valign="baseline">
<td nowrap align="right"> </td>
<td><input name="btnSubmit" type="submit" id="btnSubmit" value="ส่งคำตอบ">
<input name="btnReset" type="reset" id="btnReset" value="ล้างข้อมูล"></td>
</tr>
</table>
<input type="hidden" name="ADate" value="<?=date("Y-m-d H:I");?>">
<input type="hidden" name="RefQid" value="<?php echo $row_DetailRS1['Qid']; ?>">
<input type="hidden" name="MM_insert" value="form1">
</form>
<p> </p>
</body>
</html>
<?php
mysql_free_result($DetailRS1);
mysql_free_result($Recordset2);
?>
Tag : PHP
|
|
|
|
|
|
Date :
2013-03-11 21:25:22 |
By :
patz8899 |
View :
5765 |
Reply :
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เช็คค่า $_POST['RefQid'] ดูครับว่ามีค่าถูกส่งมาไม๊
Column 'RefQid' cannot be null RefQid น่าจะถูกตั้งค่าไม่ให้ null พอไม่มีค่าส่งมาให้ Query จึง error ครับ
|
|
|
|
|
Date :
2013-03-11 21:41:49 |
By :
mangkunzo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คุ้นๆ จัง code นี้
บรรทัดที่ 45 ลองเปลี่ยนจาก int เป็น text ดูหน่อยครับว่าผลเป็นยังไง
Code (PHP)
GetSQLValueString($_POST['RefQid'], "int"));
|
|
|
|
|
Date :
2013-03-11 22:18:09 |
By :
poomloom |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
code จากหนังสือ dreamweaver cs5 ครับ โดยคุณจีระสิทธิ์ ครับ
|
|
|
|
|
Date :
2013-03-12 07:49:30 |
By :
patz8899 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองทำดูแล้วครับ ยังไม่ได้เลย ครั้งนี้ไม่มี error Column 'RefQid' cannot be null แถมฐานข้อมูลยังเป็นภาษาต่างดาวอีก แก้ยังไงหรอครับ (มือใหม่)
|
|
|
|
|
Date :
2013-03-12 08:02:06 |
By :
patz8899 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
หนังสือเค้ามีเว็บไซต์สำหรับ support ลูกค้าที่ซื้อหรือเปล่าครับ
|
|
|
|
|
Date :
2013-03-12 08:14:57 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมซื้อมาจาก se-ed เท่าที่ดูไม่มีนะครับ
|
|
|
|
|
Date :
2013-03-12 08:17:33 |
By :
patz8899 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
นั่นซิ หนังสือพวกนี้ไร้ความรับผิดชอบน่ะครับ ว่าไหม๊ ทำหนังสือออกมาแต่ไม่มีการ Support คนใช้หรือคนซื้อ
Code (PHP)
echo $insertSQL;
ลอง echo ค่าออกมาดูครับ
|
|
|
|
|
Date :
2013-03-12 08:43:00 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
สมองผมอาจมีปัญหาในเรื่องการ process อิอิ
|
|
|
|
|
Date :
2013-03-12 09:06:30 |
By :
patz8899 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|