|
|
|
ขอสอบถามเรื่องการดึงข้อมูลจากตารางนึงมาบันทึกใส่ในอีกตารางนึงหน่อยค่ะ |
|
|
|
|
|
|
|
คือตอนนี้มีตาราง add_product
แล้วได้ทำการดึงข้อมูลจากตารางนี้มาทำเป็น Dropdown ค่ะ
โดยได้ทำการดึงมาใส่ในนี้ค่ะ(กรอบแดง)
และเมื่อกดปุ่มบันทึกข้อมูลก็จะถูกบันทึกไว้ในตารางนี้ค่ะ
โดยที่ให้ ยี่ห้อ เพิ่มไปในช่อง ctm_product แล้วก็ รุ่น ใส่ไปในช่อง ctm_model
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><select name="add_product" id="add_product">
<?php
$q="select * from add_product ";
$qr=mysql_query($q);
while($rs=mysql_fetch_array($qr)){
?>
<option value="<?=$rs['model']?>"><?=$rs['brand']?></option>
<?php } ?>
</select></td>
<tr valign="baseline">
<td nowrap="nowrap" align="right">รุ่น:</td>
<td><select name="add_product" id="add_product">
<?php
$q="select * from add_product ";
$qr=mysql_query($q);
while($rs=mysql_fetch_array($qr)){
?>
<option value="<?=$rs['brand']?>"><?=$rs['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-10-22 22:36:44 |
By :
aorplus |
View :
785 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไมโค๊ดเยอะจัง copy เขามาใช่มะ คุ้นๆ เขียนแค่นี้ก้อพอครับ
Code (PHP)
<?
if ($_POST){
$ctm_name = $_POST[ctm_name];
$ctm_surname = $_POST[ctm_surname];
$add_product = $_POST[add_product];
$add_product2 = $_POST[add_product2];
$ctm_tel = $_POST[ctm_tel];
$ctm_date = $_POST[ctm_date];
$ctm_fix = $_POST[ctm_fix];
$ctm_tel = $_POST[ctm_tel];
}
else
{
require_once('Connections/AddDataCustomers.php');
$sql = mysql_query ("insert into data_customers (ctm_name,ctm_surname, ctm_product, ctm_model,ctm_tel, ctm_date, ctm_fix) values (0,'$ctm_name','$ctm_surname','$add_product','$add_product2','$ctm_tel','$ctm_date','$ctm_fixl','$ctm_tel ')") or die (mysql_error());
}
if ($sql){
echo "เพิ่มข้อมูลเรียบร้อย";
}
else {
echo "ไม่สามารถเพิ่มข้อมูลได้";
}
?>
*เปลี่ยน ตรง <form action="<?php echo $editFormAction; ?>" method="post" name="form1" id="form1">
เป็น <form action="<? echo $PHP_SELF ?>" method="post" name="form1" id="form1"> ด้วยนะครับ
ปล. script นี้ผมเขียนสดยังไม่ได้ลอง test
|
ประวัติการแก้ไข 2013-10-22 23:16:43 2013-10-22 23:18:29
|
|
|
|
Date :
2013-10-22 23:13:03 |
By :
topza1412 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณนะคะ
|
ประวัติการแก้ไข 2013-10-22 23:50:06 2013-10-23 01:07:40
|
|
|
|
Date :
2013-10-22 23:22:26 |
By :
aorplus |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แล้วผลเปนไงบ้างครับ insert เข้าไหมครับ
|
|
|
|
|
Date :
2013-10-23 07:48:53 |
By :
topza1412 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เข้าค่ะ แต่ใช้เป็น select เลือกตารางเอา
|
|
|
|
|
Date :
2013-10-23 12:08:56 |
By :
aorplus |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|