ช่วยดูโค้ดให้หน่อยค่ะ ว่าตรง Dropdown ทำไมมันไม่ขึ้น
อยู่ดีๆ ตัวเลือกใน Dropdown มันก็ไม่ขึ้นค่ะ
คือเมื่อทำการกรอกข้อมูลในนี้
ปกติมันก็จะไปขึ้นใน drop down ของ ยี่ห้อ และรุ่น
Code ของรูปแรก
<?php require_once('Connections/AddDataCustomers.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 add_product (brand, model) VALUES (%s, %s)",
GetSQLValueString($_POST['brand'], "text"),
GetSQLValueString($_POST['model'], "text"));
mysql_select_db($database_AddDataCustomers, $AddDataCustomers);
$Result1 = mysql_query($insertSQL, $AddDataCustomers) or die(mysql_error());
$insertGoTo = "data_product.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>After Sale Service</title>
</head>
<body>
<p> </p>
<form action="<?php echo $editFormAction; ?>" method="post" name="form1" id="form1">
<center>
<p>เพิ่มสินค้า</p>
</p></center>
<center><table align="center">
<tr valign="baseline">
<td nowrap="nowrap" align="right">ยี่ห้อ:</td>
<td><input type="text" name="brand" value="" size="32" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">รุ่น:</td>
<td><input type="text" name="model" value="" size="32" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right"> </td>
<td><center><input type="submit" value="ตกลง" /> <input type="button" name="button" id="button" value="Cancel"onclick="window.location='data_product.php'" /></center></td>
</tr>
</table></center>
<input type="hidden" name="MM_insert" value="form1" />
</form>
<p> </p>
</body>
</html>
แล้วก็...
Code ของรูปที่สอง
<?php
require_once('Connections/AddDataCustomers.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 data_customers (ctm_name, ctm_surname, ctm_product, ctm_model, ctm_tel, ctm_date, ctm_fix, ) VALUES (%s, %s, %s, %s, %s, %s, %s,)",
GetSQLValueString($_POST['ctm_name'], "text"),
GetSQLValueString($_POST['ctm_surname'], "text"),
GetSQLValueString($_POST['ctm_product'], "text"),
GetSQLValueString($_POST['ctm_model'], "text"),
GetSQLValueString($_POST['ctm_tel'], "int"),
GetSQLValueString($_POST['ctm_date'], "date"),
GetSQLValueString($_POST['ctm_fix'], "text"));
mysql_select_db($database_AddDataCustomers, $AddDataCustomers);
$Result1 = mysql_query($insertSQL, $AddDataCustomers) or die(mysql_error());
$insertGoTo = "data-table.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>After Sale Service</title>
</head>
<body>
<form action="<?php echo $editFormAction; ?>" method="post" name="form1" id="form1">
<table border="0" align="center">
<tr valign="baseline">
<td nowrap="nowrap" align="right"> </td>
<td align="center"><p>เพิ่มข้อมูลใหม่</p></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">ชื่อ:</td>
<td><input type="text" name="ctm_name" value="" size="32" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">นามสกุล:</td>
<td><input type="text" name="ctm_surname" value="" size="32" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">ยี่ห้อมือถือ:</td>
<td>
<select name="ctm_product" id="ctm_product">
<?php
$strSQL = "SELECT * FROM add_product";
$objQuery = mysql_query($strSQL);
while($objResuut = mysql_fetch_array($objQuery))
{
?>
<option value="<?=$objResuut["brand"];?>"><?=$objResuut["brand"];?></option>
<?php
}
?>
</select>
</td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">รุ่น:</td>
<td>
<select name="ctm_model" id="ctm_model">
<?php
$strSQL = "SELECT * FROM add_product";
$objQuery = mysql_query($strSQL);
while($objResuut = mysql_fetch_array($objQuery))
{
?>
<option value="<?=$objResuut["model"];?>"><?=$objResuut["model"];?></option>
<?php
}
?>
</select>
</td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">เบอร์ติดต่อ:</td>
<td>
<input type="text" name="ctm_tel" value="" size="32" />
</td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">วันที่มาซ่อม(ป-ด-ว):</td>
<td>
<input type="text" name="ctm_date" value="<?php echo date('Y-m-d'); ?>" size="32" />
</td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">บริการที่เข้ารับ:</td>
<td><select name="ctm_fix" id="ctm_fix">
<option value="case1">case1</option>
<option value="case2">case2</option>
<option value="case3">case3</option>
</select></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right"> </td>
<td><center><input type="submit" value="บันทึก" />
<input type="reset" name="resend" id="resend" value="ล้างข้อมูลทั้งหมด" />
</center></td>
</tr>
</table>
<input type="hidden" name="MM_insert" value="form1" />
</form>
<p> </p>
</body>
</html>
ขอบคุณมากๆค่ะTag : PHP, MySQL
Date :
2013-11-19 13:13:06
By :
aorplus
View :
914
Reply :
13
รูปที่ 1 ถ้ารับค่ามาก็ต้องใส่ค่าใน value="" ด้วย ครับ
รูปที่ 2 ลองคิวรี่นอก option ดูว่ามี error อะไรหรือเปล่านะครับ
Date :
2013-11-19 13:20:26
By :
Dragons_first
ลองเปลี่ยน <? เป็น <?php ดูครับ
Date :
2013-11-19 13:21:58
By :
mangkunzo
หาไม่เจอ หรือเธอไม่มี (ค่าในฐานข้อมูลเลย)
Date :
2013-11-19 13:24:23
By :
{Cyberman}
ขอบคุณค่ะ
Date :
2013-11-19 13:41:21
By :
aorplus
รู้นะว่าลืมอะไร ลืมคำสั่งคอนเน็คดาต้าเบสและซีเลคดีบีไปรึเปล่าตัวเธอ. . .
Date :
2013-11-19 13:49:26
By :
meannerss
เอ่อ... พอกดบันทึกแล้วมันขึ้นแบบนี้ หมายความว่ายังไงหรอคะ
"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 ') VALUES ('นายสิบเà¸à¹‡à¸”', 'สิบเà¸à¹‡à¸”', 'mobile2', ' at line 1"
Date :
2013-11-19 14:04:46
By :
aorplus
แสดงว่าคาถาอัญเชิญผิดพลาด ไปเช็คคำสั่งที่ไฟล์ $editFormAction ส่งไป
Date :
2013-11-19 14:20:21
By :
meannerss
เอ่อ..ขอถามแบบโง่ๆเลย มันต้องเช็คยังไงอ่ะคะ TT
Date :
2013-11-19 14:26:35
By :
aorplus
คำสั่งหลังจากกดบันทึกยิงไปที่ไหนครับ ตรงนั้นมีที่ผิด (*ผิดบนคำสั่ง sql )
Date :
2013-11-19 14:33:04
By :
meannerss
อ่อ ขอบคุณค่ะ
Date :
2013-11-19 14:50:28
By :
aorplus
Load balance : Server 04