ต้องการใส่ Drop down แทน Text box แล้วให้ไปเก็บในฐานข้อมูลค่ะ
ในช่องบริการที่เข้ารับ ต้องการใส่เป็น Dropdown แทนค่ะ
แล้วเมื่อเลือกใน Dropdown แล้วมันก็จะไปเก็บในฐานข้อมูลด้วยค่ะ
ต้องทำยังไงหรอค่ะ ขอบคุณมากๆค่ะ
โค้ดของหน้านี้ค่ะ
Code (PHP)
<?php require_once('Connections/AddDataCustomers.php');
include("header.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_tel, ctm_date, ctm_fix) VALUES (%s, %s, %s, %s, %s, %s)",
GetSQLValueString($_POST['ctm_name'], "text"),
GetSQLValueString($_POST['ctm_surname'], "text"),
GetSQLValueString($_POST['ctm_product'], "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>Insert Data</title>
</head>
<body>
<form action="<?php echo $editFormAction; ?>" method="post" name="form1" id="form1">
<p> </p>
<p> </p>
<p> </p>
<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><input type="text" name="ctm_product" value="" size="32" /></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="" size="32" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">บริการที่เข้ารับ:</td>
<td><input type="text" name="ctm_fix" value="" size="32" /></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-10-14 14:03:10
By :
aorplus
View :
935
Reply :
8
<select name="tele">
<option value="เปลี่ยนจอ">เปลี่ยนจอ</option>
<option value="เปลี่ยนแบต">เปลี่ยนแบต</option>
<option value="ลงโปรแกรม">ลงโปรแกรม</option>
</select>
Date :
2013-10-14 14:34:49
By :
apisitp
ต้องใส่ตรงบรรทัดไหนหรอค่ะ
Date :
2013-10-14 14:49:01
By :
aorplus
Code (PHP)
<!-- อันเก่า -->
<tr valign="baseline">
<td nowrap="nowrap" align="right">บริการที่เข้ารับ:</td>
<td><input type="text" name="ctm_fix" value="" size="32" /></td>
</tr>
<!--เปลี่ยนเป็นแบบนี้ -->
<tr valign="baseline">
<td nowrap="nowrap" align="right">บริการที่เข้ารับ:</td>
<td>
<select name="ctm_fix">
<option value="เปลี่ยนจอ">เปลี่ยนจอ</option>
<option value="เปลี่ยนแบต">เปลี่ยนแบต</option>
<option value="ลงโปรแกรม">ลงโปรแกรม</option>
</select>
<!--อธิบาย
ใน <option> ตรง value คือค่าที่จะเก็บลง database ส่วนค่าด้านหลัง คือ lable คือคำที่แสดงโชว์ตอนเลือกคราฟ
-->
</td>
</tr>
ประวัติการแก้ไข 2013-10-14 15:00:33
Date :
2013-10-14 14:59:40
By :
bigbababa
Date :
2013-10-14 15:01:13
By :
apisitp
ลองดูเรื่องตัวแปรครับ....
ของเก่าเป็นแบบไหน
เอาของใหม่เข้าไปเสริม
เสริมไปแล้ว ต้องมีส่วนไหนที่เกี่ยวข้องกับที่เพิ่มเข้าไป น้องก็ต้องเพิ่มเข้าไปด้วย
แล้วแนะนำว่า เวลาเกิด Error มันแปรตรง ๆ ตัว ไม่ยากที่จะหาคำตอบหรอกครับ
Date :
2013-10-14 15:14:34
By :
apisitp
ขอบคุณทั้งสองท่านมากค่ะ ทำได้แล้วค่ะ
Date :
2013-10-14 15:23:29
By :
aorplus
Load balance : Server 04