|
|
|
รบกวนช่วยชี้แนวทางหน่อยครับ สร้างลิสเมนู และ เลือกค่าแสดงผลไปยัง Textbox แล้วบันทึกลงฐานข้อมูลอีกครั้งนึงอ่ะครับ |
|
|
|
|
|
|
|
ติดปัญหาตรงไหนครับ
|
|
|
|
|
Date :
2013-05-25 19:51:19 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แล้วในเมื่อเลือกค่าจาก ListMenu มาลงใน textbox แล้ว ทำไมต้องส่งค่าใน listMenu อีกอ่ะครับ งง
|
|
|
|
|
Date :
2013-05-25 22:24:20 |
By :
itpcc |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<td width='30%' align='right'>รหัสสมาชิก : </td>
<td width='70%'>
<select name='Lo_id' OnChange="resutName(this.value);">
<option value=""><--เลือกรหัสสมาชิก--></option>
<?
$sql = "SELECT * FROM member ORDER BY M_id ASC";
$result = mysql_query($sql);
while($dbarr = mysql_fetch_array($result))
{
?>
<option value="<?=$dbarr["M_name"];?>|<?=$dbarr["M_position"];?>|<?=$dbarr["M_program"];?>|<?=$dbarr["M_workplace"];?>"><?=$dbarr["M_id"];?></option>
<?
}
?>
</select>
</td>
</tr>
<tr>
<td width='30%' align='right'>ชื่อผู้กู้ : </td>
<td width='70%'><input name='Lo_name' id='Lo_name' size='50' type="text"></td>
</tr>
<tr>
<td width='30%' align='right'>ตำแหน่ง : </td>
<td width='70%'><input name='Lo_position' id='Lo_position' type='text' size='50'></td>
</tr>
<tr>
<td width='30%' align='right'>โปรแกรมวิชา : </td>
<td width='70%'><input name='Lo_program' id='Lo_program' type='text' size='50'></td>
</tr>
<tr>
<td width='30%' align='right'>คณะ : </td>
<td width='70%'><input name='Lo_workplace' id='Lo_workplace' type='text' size='50'></td>
</tr>
ในส่วน database เอาลงตาราง loan ผมดึงมาจาก ตาราง member แต่เอา M_id ลงในช่อง Lo_id ไม่ได้อ่ะครับ
$sql="INSERT INTO loan
set Lo_id='".$Lo_id."',
Lo_name='".$Lo_name."',
Lo_position='".$Lo_position."',
Lo_program='".$Lo_program."',
Lo_workplace='".$Lo_workplace.'";
}
|
|
|
|
|
Date :
2013-05-26 16:56:53 |
By :
FilMKodaK |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|