我想獲得所有電子郵件地址列表表單數據庫,並希望能夠使用redio按鈕選擇任何電子郵件地址。以下代碼可以顯示所有電子郵件地址的列表,但無法使用HTML redio按鈕選擇它們。我在做什麼錯?從php中選擇任何數據使用單選按鈕在php
$result = mysql_query("SELECT * FROM users");
while($row = mysql_fetch_array($result)) {
//
$allemail = array($row['w_email']);
foreach ($allemail as $email_show) {
// echo "$email_show"; // this echo shows all my database email successfully!
echo "<form action="" method="post"><input type="radio" name="email_selector" value="$email_show"><br></form>"; //but this code not works
}
}
Parse error: syntax error, unexpected '" method="' (T_CONSTANT_ENCAPSED_STRING), expecting ',' or ';' in C:\xampp\htdocs\phpprojects\plapp\admin89\dashboard.php on line 22
單選按鈕循環如何與CSS這個問題? –
**警告**:如果您只是學習PHP,請不要學習過時的['mysql_query'](http://php.net/manual/en/function.mysql-query.php)界面。這很糟糕,並且已經在PHP 7中被刪除了。像[PDO不是很難學的東西](http://net.tutsplus.com/tutorials/php/why-you-should-be-using-php-pdo- for-database-access /)以及[PHP The Right Way](http://www.phptherightway.com/)等指南有助於解釋最佳實踐。確保**你的用戶參數[妥善轉義](http://bobby-tables.com/php),否則你將以嚴重的[SQL注入漏洞](http://bobby-tables.com/ )。 – tadman