When I hit the submit image I get some extra parameters in the GET request:
main.php?selected=user_manager_main&mode=set_active&set_this_id=13&x=4&y=7
Please note the x
and y
at the end. I certainly did not define the x
and y
at the end. The values seem to be 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!