Hi..
I wanted to use an image as my form's submit button to send data to '$PHP_SELF',
but it didn't work unless I use a type=submit button.
Can anyone explain why I can't use the image as my button?
And how can I solve this ?
This is a part of my code :
echo "<form action='$PHP_SELF' method=post>";
.
.
echo "<input type=hidden name=k value='$k'>";
echo "<input type=image src=images/del.gif name=del>";
echo "</form.";
Thank u 🙂