Forum Moderators: open
There are three fields being returned;
sitesearch.php?q=search%20term&x=10&y=8
the x and y are the coordinates of where the "go" image (submit button) were clicked. They are apparently appended by the browser (firefox and IE do it.. i think all do)
These two terms just look yucky; and when I use a search result as an inbound link; they are hurting our SEO!
Since this is a GET request; there is no way I can remove the extra X and Y terms unless I use php to trim them and then refresh the page to the new URL. I dont like the idea of refreshing the page!
Is there any other way to supress the x and y terms?
Thanks in advance!
When a pointing device is used to click on the image, the form is submitted and the click coordinates passed to the server. The x value is measured in pixels from the left of the image, and the y value in pixels from the top of the image. The submitted data includes name.x=x-value and name.y=y-value where "name" is the value of the name attribute, and x-value and y-value are the x and y coordinate values, respectively.
Is there any other way to supress the x and y terms? Yes... use POST instead of GET. That will hide all of your query values. Sorry, that's all you can do.
[edited by: Fotiman at 4:25 pm (utc) on Aug. 4, 2006]