hi everyone,
I built a script and was testing in Firefox the whole time and then when I switch to IE I get problems...
Basically I have some forms with multiple buttons.
eg. this for filtering a listing
<FORM ACTION="<?php echo "$PHP_SELF?action=mass_action"; ?>" METHOD="POST" NAME="mass_action">
// This form also has other submit buttons using different names.
<select name="filter_type" id="filter_type">
<option value="">All Types</option>
<option value="public">Public</option>
<option value="press">Press</option>
</select>
<INPUT TYPE="image" NAME="filter" src="img/filter.gif" VALUE="filter" title="Filter by Selected Category">
then in my mass_action part I have this:
if($_POST[filter] != ""){ $submit_type = "filter"; $filter_by = $_POST['filter_type']; }
then I can play with the $filter_type values.
In Firefox it handles it perfections but in IE it can not find the $_POST[filter] value 🙁
any ideas how to get around this???
Thanks
Chris