I found the following explanation on a website. When you submit your form with a graphic button, you will notice the .x and .y appended to the name of the button. ...snertal&crew%5B%5D=gosny&formbutton.x=37&formbutton.y=14 But if you were to submit the page and look at the results, however, you'd see: formbutton_x = 37 formbutton_y = 14 Notice that the period (.) has been converted to an underscore (_). This may seem a little odd, but it's necessary because variable names in PHP can't have periods in them, so $formbutton.x would be an illegal variable name. In fact, any periods in form names -- not just those for image buttons -- are converted to underscores. Maybe others can add their 2 cents too. By the way, it's better for you to put anything related to PHP in the PHP forum.
|