List/Menu dari database

tini ajah · Sep 30, 2011
saya punya tabel yg salah satu field-nya 'status', recordnya OK, Cancel, Pending.
saya mau tampilin record tersebut di List/Menu.
gimana scripnya ya??
mohon dibantu...
Silahkan login untuk menjawab!
0
Loading...
Ellyx Christian · Sep 30, 2011 · 0 Suka · 0 Tidak Suka
contoh:
$sql = "select * from nama_table";
$rs = mysql_query($sql);
while($data = mysql_fetch_array($rs)){
$field = $data['nama_field'];
echo '<select>';
echo '<option value="">--</option>';
echo '<option value="OK" '.($field == 'OK' ? 'selected="selected"' : '').'>OK</option>';
echo '<option value="Cancel" '.($field == 'Cancel' ? 'selected="selected"' : '').'>Cancel</option>';
echo '<option value="Pending" '.($field == 'Pending' ? 'selected="selected"' : '').'>Pending</option>';
echo '</select>';
}