你好,我從表中創建了一個菜單。我向表員工添加了用戶none,使其成爲選項菜單中的默認值。問題是我不知道如何將none用戶添加爲選項菜單中的默認值。這裏是我有:PHP和選定的選項菜單
$query = "SELECT UserName FROM employee where Classification_ClassificationID = '2'";
$result = queryMysql($query);
if (!queryMysql($query)) {
"Query fail: $query<br />" .
mysql_error() . "<br /><br />";
}
else
{
<select name = "UserName", "Name" size = "1">'; // or name="toinsert[]"
while ($row = mysql_fetch_array($result)) {
'<option value="' . htmlspecialchars($row['UserName']) . '" >'
. htmlspecialchars($row['UserName'])
. '</option>';
只需在打開選擇後手動添加''。 – 2011-01-05 01:04:29
好的,我很抱歉。但是這個代碼很醜陋。 – 2011-01-05 01:10:23