Got an email with this question:
What I am seeking is an equally easy PHP inclusion that retains drop down and radio button entries when a form has an error on submission.
.....Meaning, If I complete one of my long PHP forms, and they fail to enter content in the required fields, an error code shows as developed but all the drop down selections go back to default and all radio buttons selections are deleted.
Short answer, cant be done as an include file to an existing form.
If you have coded your form like this:
<input type="text" name="first_name"
value="<?=htmlspecialchars($_REQUEST['first_name']);?>">
Then you will need to continue doing it for drop down select boxes and radio boxes like this:
<select name="foo">
<option value="1"<?=($_POST['foo']==1)?" selected":"";?>>Option 1</option>
<option value="2"<?=($_POST['foo']==2)?" selected":"";?>>Option 2</option>
<option value="3"<?=($_POST['foo']==3)?" selected":"";?>>Option 3</option>
</select>
or instead of coding each option value manually, you can use an array like so:
<?php
// specify drop down field values in array:
$drop_down_fields = array(
"value1"=>"Value 1",
"value2"=>"Value 2",
"value3"=>"Value 3",
"value4"=>"Value 4",
);
// name your drop down select box:
$drop_down_name = "my_drop_down_box";
?>
<select name="<?=$drop_down_name;?>">
<option value="">Please select an option</option>
<?php foreach($drop_down_fields as $key=>$val){ ?>
<option value="<?=$key;?>"
<?=($_REQUEST[$drop_down_name]==$key)?" selected":"";?>
>
<?=$val;?>
</option>
<?php } ?>
</select>
and to make checkboxes remember their selection after submitting a form do something like this:
<input type="checkbox"
name="my_checkbox_name"
value="some_value_here"
<?=($_POST['my_checkbox_name']=="some_value_here")?"
checked":"";?>
>
or an idea solution is to specify all your form elements as an object or array first before you start to worry about how to display them on the screen. Once you have the form elements defined in a php array you can do anything with them, an example of this is here:
http://dtbaker.com.au/code/html_converter/example2.php
|
Collector Comics is THE place to buy, sell, and research comics online. Launching soon.
Launch »
Screenshot »
|
|
Webitor is a kick-ass easy to use, easy to extend, non-database driven Content Management System. Version 2 with reseller plan coming soon.
Launch »
Version 1 »
|
|
GC Lounge is my own pet social network and test bed for social related code. Made by locals for locals.
Launch »
|
|
GG has indexed over half a million recent Trade Mark applications. This revolutionary tool is extremely valuable for industry experts.
Launch »
|
|
GCWiFi is the hub for techies interested in joining a ad-hoc wireless mesh spread across the Gold Coast
Launch »
|
|
Web based financial client management system
Launch »
|
|
OS Commerce modules and template modification
Launch »
|
| View More Projects » | |