Ok this makes no sense to me seeing as how PHP should work regardless of the browser... or am i wrong on that? ANYWAY here...
[HTML]<form action="<? $_SERVER['PHP_SELF'] ?>" method="post" enctype="multip art/form-data">
<input type="image" name="submit1" value="submit1" src="imgs/uploadimg.jpg" width="169" height="35" />[/HTML]
there is the HTML code for the form now the php
[PHP]if(isset($_POST['submit1'])){
do php stuff
}[/PHP]
and thats the php... i dont know im flipping lost cause it works fine in FireFox (of course) what i am assuming is that im usying input type="image" instead of input type="submit" and IE wants to hate me for it... LOL yea as always any and all input would be had thanks in advance for your help :)
[HTML]<form action="<? $_SERVER['PHP_SELF'] ?>" method="post" enctype="multip art/form-data">
<input type="image" name="submit1" value="submit1" src="imgs/uploadimg.jpg" width="169" height="35" />[/HTML]
there is the HTML code for the form now the php
[PHP]if(isset($_POST['submit1'])){
do php stuff
}[/PHP]
and thats the php... i dont know im flipping lost cause it works fine in FireFox (of course) what i am assuming is that im usying input type="image" instead of input type="submit" and IE wants to hate me for it... LOL yea as always any and all input would be had thanks in advance for your help :)
Comment