Prepopulating form fields afer an error

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi,
I have a form and it does basic error checking after submission; when the user omits required fields it kicks back the form with highlighted errors telling them the error of their ways.

I've sussed out that by populating the value of the field with $fieldvalue I can have that form field "populated" with the data the user *did* enter for that field:

something like

<input type="text" name="email_address" value="<?php echo $email_address?>

That works great. But how can I do the same thing for drop down boxes, when they select an option?

I tried the unwieldy,

<select name='blah'>
 <?php if (!empty(blah)) {
        echo "<option value='";
        echo "$blah";
        echo "'>"
        echo "$blah";
        echo "</option>\n";
    }
   ?>


And that, lo and behold, didn't work. Can anyone offer a suggestion?

Thanks in advance
JJ

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux