I'm having a strange problem--when I use this enctype on my form (for a file upload), I encounter a strange problem with other form variables that are passed back to the script.
IE--
<input class="a" type="submit" name="action" value="Make Changes">
If I print the value of $action, I do in fact see Make Changes, however-- the statement else if ($action == "Make Changes") { } does not work. I also added to the very top of my .php script if($action=="Make Changes"){echo "test";} -- it doesn't see it.
Am I missing something?
IE--
<input class="a" type="submit" name="action" value="Make Changes">
If I print the value of $action, I do in fact see Make Changes, however-- the statement else if ($action == "Make Changes") { } does not work. I also added to the very top of my .php script if($action=="Make Changes"){echo "test";} -- it doesn't see it.
Am I missing something?