Select menü seçeneği seçimi hatırla

0 Cevap

Gibi başlık diyor, ben bunu nasıl yaparım?

Yani kullanıcı boş mesaj bıraktı ama doğru bir konu seçtiyseniz, ben sayfadan sonra seçilecek bu konu yenilendi gelmiştir istiyorum Diyelim

Şu anda benim kod:

if (count($_POST) > 0) {

    if (strlen($_POST['topic']) < 1) 
        $errorMsg = "Please select a topic.";
else if (strlen($_POST['message']) < 1)
    $errorMsg = "You have to enter a message.";

}


$topics = mysql_query("SELECT name FROM topics ORDER BY name ASC");

echo '<option value="-1" selected="selected">(Choose Topic)</option>';
while ($t = mysql_fetch_assoc($topics)) {
    echo '<option value="'.$t['id'].'">'.htmlspecialchars($t['name']).'</option>';
}

0 Cevap