Hello,
contactus.php:
<FORM action="thankyou.php" method=post onsubmit="return sendForm(this)">
..
..
<INPUT type=image src="../images/submit.gif" width=68 height=29 border=0 alt="Send">
thankyoup.php:
if (isset($HTTP_POST_VARS["submit"])) {
....
}
my problem is that if i use the image for submit, then it never goes into the if conditional.
however, if i use <input type="submit" Name="submit" value="Send"> then it works fine.
can you help me in getting an image there to work. thanks.