I have the code:
<form method="post" action="abc.php">
<input type="submit" name="sb1" value="sb1"> //<----LINE1
<input type="image" src="sample.jpg" name="sb2" value="sb2"> //<---LINE2
</form>
Now the question is:
I can use submit button to submit "sb1", but if I try to submit image "sample.jpg", I cannot retrieve data "sb2". Anyone knows why? thanks.