Hello, I've looked around for this but can't seem to find a solution that will work, currently I have...
<?
if($submit1)
print"submit1";
elseif($submit2)
print"submit2";
else
print"<form action=$PHP_SELF method=post>
<input name=message1>
<input name=message2>
<input type=submit name=submit1 value=submit1>
<input type=submit name=submit2 value=submit2>
</form>";
?>
I wonder why this doesn't work when I use images or pictures as the submit buttons. How come?Thank you.