isset post with form - solved
Posted: Wed Aug 03, 2005 9:01 am
i dont know why but is it just me or does isset($_POST['1_1']) does not work if the form used input type="image" name="1_1"?
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
In PHP the ".x" and ".y" converts to an underscore.When the graphical submit button is clicked, the coordinates of the click are sent with the form submission as name.x=x-value and name.y=y-value where name is the value of the NAME attribute, x-value is the click's pixels from the left of the image, and y-value is the click's pixels from the top of the image.