好日子先生/女士!我是新手程序員。我想問一下如何在foreach
聲明中使用&&
符號作爲條件?我搜索瞭解決方案,但只能找到C#的結果。如果我的英語語法很差,我很抱歉。如果您發現問題太簡單了,請原諒我,因爲我是新手。如何用&&登錄條件進行foreach php
我的示例代碼:提前
$accountval = array();
$accountidval = array();
$account = mysql_query("SELECT * FROM account where region = '$regionval' ");
while($rowaccount = mysql_fetch_array($account))
{
$accountval[] = $rowaccount['accountname'];
$accountidval[] = $rowaccount['id'];
}
foreach($accountval as $key => $accountname && $accountidval as $key1 =>$accountid)
{
echo "<option value='{$accountid}'>".$accountname."</option>";
}
謝謝:)
謝謝先生...:D –