Highlighting Multiple Selections On A Form After Submitting
This select box below does remember and highlight -one- selection after submitting the form. But when i make it multiple, it doesn't highlight any of the selectionS after submittin
Solution 1:
$_GET['no_way']
only handles single parameters you have to use $_GET['no_way[]']
and in_array($option, $no_way)
Solution 2:
This works for me:
<?php$options_amount = array("0","1","2","3","4","5","6","7","8","9","10+");
$no_way = $_GET['no_way'];
?><selectclass="postform"name="no_way[]"multiplesize="5"><option<?phpif (in_array("all",$no_way)) { ?>selected="selected"<?php }?>value="all">Any</option><?phpforeach ($options_amountas$option) {
?><option<?phpif (in_array($option,$no_way)) { ?>selected="selected"<?php }?>value="<?phpecho$option; ?>"><?phpecho$option; ?></option><?php }?></select>
Post a Comment for "Highlighting Multiple Selections On A Form After Submitting"