|
|
|
insert แบบ Element ในรูปแบบของ select ไม่ลงฐานข้อมูลนะค่ะ ขอความกรุณาท่านผู้รู้และมีเมตตาช่วยตรวจสอบให้หน่อยนะค่ะ |
|
|
|
|
|
|
|
ดัดแปลงมาจากลิงค์นี้
https://www.thaicreate.com/php/forum/048745.html
ประกอบกับลิงค์นี้ค่ะ
https://www.thaicreate.com/php/php-mysql-multiple-upload-file-to-mysql-not-array.html
แต่ว่ามันก็ยัง add ข้อมูลไม่ลงลงฐานตรง student_id นะค่ะ ซึ่งตารางที่สัมพันธ์กันก็จะมี 2 ตารางนี้นะค่ะ
ตาราง ผู้พัฒนา หรือ developer ค่ะ
กับตาราง เก็บรหัสโปรเจ็กกับผู้พัฒนาไว้นะค่ะ pro_developer
ไฟล์ add ชื่อ addpro.php
Code (PHP)
<!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" />
<html>
<head>
<title>ระบบสืบค้นและยืมคืนปริญญานิพนธ์</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<? include("../connection/connect.php");?>
<?
$strSQL = "SELECT * FROM developer";
mysql_query("SET NAMES UTF8");
$objQuery = mysql_query($strSQL);
?>
<script language="javascript">
function CheckValidate()
{
for(i=1;i<=document.frmMain.hdnMaxLine.value;i++)
{
//*** Column 1 ***/
if(eval("document.frmMain.student_id"+i+".value")=="")
{
alert('กรุณาเลือกชื่อผู้พัฒนา' + i);
eval("document.frmMain.student_id"+i+".focus();")
return false;
}
}
}
function CreateSelectOption(ele)
{
var objSelect = document.getElementById(ele);
var Item = new Option("", "");
objSelect.options[objSelect.length] = Item;
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
var Item = new Option("<?=$objResult["lead_name"];?><?=$objResult["first_name"];?> <?=$objResult["ser_name"];?>");
objSelect.options[objSelect.length] = Item;
<?
}
?>
}
function CreateNewRow()
{
var intLine = parseInt(document.frmMain.hdnMaxLine.value);
intLine++;
var theTable = document.getElementById("tbExp");
var newRow = theTable.insertRow(theTable.rows.length)
newRow.id = newRow.uniqueID
var newCell
//*** Column 1 ***//
newCell = newRow.insertCell(0);
newCell.id = newCell.uniqueID;
newCell.setAttribute("className", "css-name");
newCell.innerHTML = "<center><SELECT NAME=\"student_id"+intLine+"\" ID=\"student_id"+intLine+"\"></SELECT></center>";
//*** Create Option ***//
CreateSelectOption("student_id"+intLine)
document.frmMain.hdnMaxLine.value = intLine;
}
function RemoveRow()
{
intLine = parseInt(document.frmMain.hdnMaxLine.value);
if(parseInt(intLine) > 0)
{
theTable = document.getElementById("tbExp");
theTableBody = theTable.tBodies[0];
theTableBody.deleteRow(intLine);
intLine--;
document.frmMain.hdnMaxLine.value = intLine;
}
}
</script>
<body Onload="CreateNewRow();CreateNewRow();">
<form name="frmMain" method="post" action="addpro_ok.php" OnSubmit="return CheckValidate();">
<br>
<br>
<table width="768" border="1" align="center">
<tr>
<td>ประเภทปริญญานิพนธ์</td>
<td> </td>
<td height="26"> </td>
</tr>
<tr>
<td width="170" valign="top">ชื่อผู้พัฒนา</td>
<td width="360" valign="top"><table width="353" border="0" id="tbExp">
<tr>
<td><div align="center"></div></td>
</tr>
</table></td>
<td width="224" height="32" valign="top"><input name="btnAdd" type="button" id="btnAdd" value="เพิ่มผู้พัฒนา" onClick="CreateNewRow();">
<input name="btnDel" type="button" id="btnDel" value="ลบผู้พัฒนา" onClick="RemoveRow();">
<input type="hidden" name="hdnMaxLine" value="0"></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
<br>
<input name="btnSubmit" type="submit" id="btnSubmit" value="Submit">
</form>
</body>
</html>
ไฟล์ add success ชื่อ addpro_ok.php
Code (PHP)
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<?
mysql_connect("localhost","root","1234");
mysql_select_db("project54");
$strSQL = "SELECT * FROM developer";
mysql_query("SET NAMES UTF8");
$objQuery = mysql_query($strSQL);
?>
<?
$student_id=$_POST['student_id'];
$strSQL = "INSERT INTO pro_developer (prodev_id,project_id,student_id) values ('$prodev_id','$project_id','$student_id') ";
mysql_query($strSQL);
$result = mysql_query($strSQL)or die (mysql_error());
//$insert = "insert into room (Rtype_id,number,floor,building_id,status) value ($roomtype,'$number','$floor',$building,'1')";
if ($result)
{
echo "<script language=\"JavaScript\">";
echo "alert('บันทึกข้อมูลห้องพักเรียบร้อย');";
echo "</script>";
/*echo "<script>window.top.window.showResult(7);</script>";
*/}
?>
Tag : PHP, JavaScript
|
ประวัติการแก้ไข 2012-06-09 02:39:51 2012-06-09 02:41:27 2012-06-09 02:42:07 2012-06-09 02:42:57
|
|
|
|
|
Date :
2012-06-09 02:38:58 |
By :
kankanit |
View :
1092 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คุณจะต้อง Insert แบบ Loop For น่ะครับ
|
|
|
|
|
Date :
2012-06-09 08:16:11 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com</title>
</head>
<body>
<?
for($i=1;$i<=(int)$_POST["hdnMaxLine"];$i++)
{
echo $_POST["txtCustomerID_".$i];
echo "<br>";
echo $_POST["txtName_".$i];
echo "<br>";
echo $_POST["txtEmail_".$i];
echo "<br>";
echo $_POST["txtCountryCode_".$i];
echo "<br>";
echo $_POST["txtBudget_".$i];
echo "<br>";
echo $_POST["txtUsed_".$i];
echo "<hr>";
}
?>
</body>
</html>
Go to : Passing Popup to Main Page เทคนิคการส่งค่าจาก Popup ไปยังหน้าเพจ Form หลัก
|
|
|
|
|
Date :
2012-06-09 08:17:58 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|