Dear 各位大大高手們...
想請問的是我PHP的CODE抓不到mysql的$row10[3]裡面的資料去下拉式做比對... 不知道是哪裡出了問題,而且還印的出來$row10[3]資料@@,而MYSQL資料庫裡面有harry and pulley資料,而沒有alpha資料,還是都一起反灰...麻煩大大們幫忙解惑
<?
$result10=mysql_query("SELECT * from initial where season = '2017Q1'");
while($row10 = mysql_fetch_array($result10))
echo $row10['englishname']."<br>";
function MySQLHas($pname) {
$result10=mysql_query("SELECT * from initial where season = '2017Q1'");
while($row10 = mysql_fetch_array($result10))
if ($row10[3] == 'harry_chien') {
return true;
} else {
return false;}
}
?>
<SELECT NAME='test' SIZE='1' ONCHANGE=ChangeCity()>
<OPTION value='0'>---請選擇---</OPTION>
<option value="harry_chien" <?=MySQLHas('harry_chien') ? ' disabled=disabled' : '';?>>harry_chien</option>
<option value="pulleylee" <?=MySQLHas('pulleylee') ? ' disabled=disabled' : '';?>>pulleylee</option>
<option value="alpha_hong" <?=MySQLHas('alpha_hong') ? ' disabled=disabled' : '';?>>alpha_hong</option>
</SELECT>