|
|
|
ช่วยด้วยครับ จะ insert into database อย่างไร(dataจากการ loop table) |
|
|
|
|
|
|
|
ผมต้องการที่จะ input ข้อมูลที่ได้จาก code ข้างล่างนี้ต้องทำอย่างไร
โดยข้อมูล 1set ประกอบด้วย วันเดือนปี 1วัน ,tct_id 1user,shift_id (insert ข้อมูลที่ table "time_stamp_user_detail")
Table มี
tct_user --> มี tct_id ,name ,f_name
project_detail --> มี pro_id,pro_name
time_stamp_user_detail --> มี tct_id ,date_shift ,shift_id
----------------------------------------------------------------------------------------------------------------------------------
<? include("inc\DB_Conf.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" />
<title>Untitled Document</title>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<select name="name_list" onChange="document.getElementById('name').value=this.value; ">
<? $sql_select= "SELECT * FROM project_shift";
$result_show = mysql_db_query($dbname,$sql_select);
while ($row = mysql_fetch_array($result_show)){;
?>
<option value="<?=$row[shift_id]?>"><?=$row[shift_name]?></option><? } ?>
</select>
<input type="text" name="name" id="name" >
</form>
<p>
<form id="form2" name="form2" method="post" action="create_shift.php">
<?
$this_month =date('21-m-Y');
$next_month =date('20-m-Y',strtotime('+1 month'));
$tag_date = (strtotime($next_month)-strtotime($this_month))/ ( 60 * 60 * 24 );
?>
<table border="1">
<tr>
<td ><input name="dates" type="text" value="<? echo $tag_date ?>" /></td>
<?
$n=0;
while($n <=$tag_date) {
?>
<td >
<? echo date("D", strtotime("+ $n day", strtotime($this_month)))?>
</td>
<?
$n++;}
?>
</tr>
<tr>
<td> </td>
<?
$n=0;
while($n <=$tag_date) {
?>
<? $shift_date=date("d", strtotime("+ $n day", strtotime($this_month)))?>
<td><? echo $shift_date?></td>
<?
$n++;}
?>
</tr>
<? $i=0;?>
<?
//ดึง user มาแสดง
$sql_select_name= "SELECT * FROM tct_user INNER JOIN project_detail ON tct_user.pro_id = project_detail.pro_id";
$result_sql_show = mysql_db_query($dbname,$sql_select_name);
while ($row_show = mysql_fetch_array($result_sql_show)){
//สร้าง BG
$i++;
if($i%2==0)
{
$bg = "#F0FFF0";
}
else
{
$bg = "#FFFFFF";
}
?>
<tr bgcolor="<?=$bg;?>">
<td height="26"><? echo $row_show['name']." "." ".$row_show['f_name']."<br>";?><input name="tct_id" type="text" value="<? echo $row_show['tct_id']?>" /></td>
<?
$n=0;
while($n <=$tag_date) {;
?>
<td><select name="name_list" onfocus="this.value=document.getElementById('name').value;return true;">
<option value="★">★</option>
<? $sql_select= "SELECT * FROM project_shift";
$result_show = mysql_db_query($dbname,$sql_select);
while ($row = mysql_fetch_array($result_show)){;
?>
<option value="<?=$row[shift_id]?>"><?=$row[shift_name]?></option><? } ?>
</select>
</td>
<?
$n++;}
?>
</tr>
<? }?>
</table>
<p>
<input type="submit" name="submit" id="submit" value="Submit" /><input type="reset" name="clear" id="clear" value="Reset" />
</p>
</form>
<p>
</body>
</html>
[u][/u]
Tag : - - - -
|
|
|
|
|
|
Date :
2010-06-30 14:54:42 |
By :
ziix |
View :
1519 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อย่างแรก คุณน่าจะให้มันอยู่ใน Form เดียวกัน
และคุณต้องกำหนด Action ให้มันด้วยว่าจะส่งค่าไปให้ page ไหน
Code (PHP)
<form id="form2" name="form2" method="post" action="">
และให้คุณสร้าง page มารับค่า จาก Form เช่น
Code (PHP)
$id2 = $_REQUEST[id];// รับตัวแปร id มาจาก page ก่อนหน้า มาเก็บใน ตัวแปร id2
แล้วคุณก็ทำการสั่ง Insert
https://www.thaicreate.com/tutorial/sql-insert.html
Code (PHP)
INSERT INTO [Table-Name] (id2,...) VALUES ('$id2',,...)
|
|
|
|
|
Date :
2010-06-30 14:59:56 |
By :
50121680 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันมาแค่ค่าสุดท้ายเท่านั้นครับ ไม่ทราบว่าต้องทำอย่างไรถึงจะได้ค่าตังแต่ชุดแรก
|
|
|
|
|
Date :
2010-06-30 19:41:40 |
By :
ziix |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|