|
|
|
อยากทราบวิธีการดึงข้อมูลในฐานข้อมูลมาแสดงในปุ่ม list ที่มีให้เลือกแบบเลือกจังหวัด |
|
|
|
|
|
|
|
Code (PHP)
<select name="lmName1">
<option value=""><-- Please Select Item --></option>
<?
mysql_connect("localhost","root","root") or die(mysql_error());
mysql_select_db("mydatabase");
$strSQL = "SELECT * FROM customer ORDER BY CustomerID ASC";
$objQuery = mysql_query($strSQL);
while($objResuut = mysql_fetch_array($objQuery))
{
?>
<option value="<?=$objResuut["CustomerID"];?>"><?=$objResuut["CustomerID"]." - ".$objResuut["Name"];?></option>
<?
}
mysql_close();
?>
</select>
ตอนอ่านค่้าก็ให้ใช้
Code (PHP)
$_POST[lmName1]
Go to : PHP MySQL DropDownList / Listmenu / ListBox
|
|
|
|
|
Date :
2012-01-04 11:45:39 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|