When I hit the send image, I get additional parameters in the GET request:
main.php?selected=user_manager_main&mode=set_active&set_this_id=13&x=4&y=7
Pay attention to x and y at the end. I definitely did not define x and y at the end. The values ββseem random. Here is the form code:
echo '<form action ="main.php" method="get">'; echo ' <input type="hidden" name="selected" value="user_manager_main" />'; echo ' <input type="hidden" name="mode" value="set_inactive" />'; echo ' <input type="hidden" name="set_this_id" value="'.$row['USER_ID'].'" />'; echo '<input type="image" src="images/delete.gif" alt="Submit" />'; echo '</form>';
Any ideas? Thanks!
source share