I use this line instead if a button on my page. I find images better looking then the actual button.
<input name="Submit" type="image" src="images/btn.gif" width="106" height="23">
But i noticed that when I need to see if the form was posted, nothing happens...
If i write:
if($Submit) {
echo "hello";
}
Then nothing happens... why? Is it because the type above is an image, and if Yes, how can this be corrected?
Thanks!