|
|
|
จะเพิ่มข้อมูลลงใน ฐานข้อมูล โดยการบันทึกเพียงครั้งเดียว |
|
|
|
|
|
|
|
ตอนเพิ่มรหัสนิสิตลงไป 2 ค่า แค่เพิ่มลงในฐานข้อมูลแค่ค่าเดียว คือรหัสที่ใส่ไปอันแรก
accept_data_club_user.php
Code (PHP)
<tr>
<td align="right"> รหัสนิสิต </td>
<td align="left">
<label for="txt_stu_id1"></label>
<input type="text" name="txt_stu_id1" id="txt_stu_id1" size="10"></td>
<td align="right"> ตำแหน่ง </td>
<td align="left">
<tr>
<td><span class="style7">
<label>
<select name="txt_position_id1" id="txt_position_id1">
<option value="0" selected>-โปรดเลือก-</option>
<option value="1">ประธานชมรม</option>
<option value="2">รองประธานชมรม</option>
<option value="3">สมาชิก</option>
</select>
</label>
</td>
</tr>
</br>
<tr>
<td align="right"> รหัสนิสิต </td>
<td align="left">
<label for="txt_stu_id2"></label>
<input type="text" name="txt_stu_id2" id="txt_stu_id2" size="10"></td>
<td align="right"> ตำแหน่ง </td>
<td align="left">
<tr>
<td><span class="style7">
<label>
<select name="txt_position_i2d" id="txt_position_id2">
<option value="0" selected>-โปรดเลือก-</option>
<option value="1">ประธานชมรม</option>
<option value="2">รองประธานชมรม</option>
<option value="3">สมาชิก</option>
</select>
</label>
</td>
</tr>
add_data_club_user.php
Code (PHP)
<?php
include("connect_db.php");
$stu_id1 =$_REQUEST['txt_stu_id1'];
$position_id1 =$_REQUEST['txt_position_id1'];
$club_id1 =$_REQUEST['txt_club_id1'];
$date_member1 =$_REQUEST['date_member1'];
$sql1 = "INSERT INTO club_member " ;
$sql1 = $sql1." (stu_id,position_id,club_id,date_member) " ;
$sql1 = $sql1." VALUES " ;
$sql1= $sql1." ( \"".$stu_id1."\", \"".$position_id1."\", \"".$club_id1."\", \"".$date_member1."\") ";
echo " <BR> ".$sql1." <BR> " ;
$result = mysql_query($sql1);
if($result1)
{ echo "<script>alert('เพิ่มข้อมูลเรียบร้อย');window.location='accept_data_club_user.php';</script>"; }
else
{ echo "<script>alert('เพิ่มข้อมูลไม่สำเร็จ');history.back();</script>"; }
?>
<?php
include("connect_db.php");
$stu_id2 =$_REQUEST['txt_stu_id2'];
$position_id2 =$_REQUEST['txt_position_id2'];
$club_id2 =$_REQUEST['txt_club_id2'];
$date_member2 =$_REQUEST['date_member2'];
$sql2 = "INSERT INTO club_member " ;
$sql2 = $sql2." (stu_id,position_id,club_id,date_member) " ;
$sql2 = $sql2." VALUES " ;
$sql2= $sql2." ( \"".$stu_id2."\", \"".$position_id2."\", \"".$club_id2."\", \"".$date_member2."\") ";
echo " <BR> ".$sql2." <BR> " ;
$result = mysql_query($sql1);
if($result1)
{ echo "<script>alert('เพิ่มข้อมูลเรียบร้อย');window.location='accept_data_club_user.php';</script>"; }
else
{ echo "<script>alert('เพิ่มข้อมูลไม่สำเร็จ');history.back();</script>"; }
?>
Tag : PHP
|
|
|
|
|
|
Date :
2014-03-07 04:29:43 |
By :
krittwat |
View :
820 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$result = mysql_query($sql1) or die(mysql_error());
จะได้รู้ว่า Error เพราะอะไร
|
|
|
|
|
Date :
2014-03-07 09:39:30 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|