I've got a CakePHP search form that has 'type'=>'get'. Basically, one of the elements in the form is a submit button of type image. When the form is posted, in the URL I always get these x & y coordinates of the image submit button:

http://site.com/controller/action?x=22&y=36&query=hello

Is there any way I can prevent the coordinates from showing up in the URL? The reason is so that someone else could use the same URL to perform the same search, without that unintuitive stuff in the link.

Thanks!

link|improve this question

1  
Move the button out of the form, and stick javascript on it to trigger the submission of the form. – Frank Farmer Dec 23 '09 at 0:02
I'm getting these 'x' and 'y' coordinates when trying to access the $_POST variables also. I wanted my form to submit to an external form processor, which we use as a centralized location for clients to login and download CSV files with registrations. Wtf are they? – Kevin C. Sep 10 '11 at 19:17
x and y coordinates are when you use an submit button of type image. Either ignore them, or change the submit button type to type="submit". – ash Sep 12 '11 at 18:08
feedback

2 Answers

up vote 3 down vote accepted

You could use some javascript on the button:

document.getElementById('myImageButton').onclick = function() {
    this.form.submit();
    return false;
};

Alternatively, in your controller in the beforeFilter function, you could check for the presence of the unwanted variables, strip them out and redirect to the nice URL. This does mean there'll be 2 HTTP requests made though.

link|improve this answer
Hmm, I was afraid of this HTTP request duplication. Well, I suppose it's the only solution left. Thanks! – ash Dec 23 '09 at 2:21
did you try the javascript solution? – nickf Dec 23 '09 at 2:22
Yeah, that worked. Thanks! – ash Dec 23 '09 at 3:40
feedback

Sounds like you are looking to do a Post/Redirect/Get.

Here are two examples of doing this in CakePHP:

Advantages of redirecting a POST to a GET request are:

  1. Users don't get the "Do you want to resubmit?" dialog if they refresh
  2. The resulting page/query can be bookmarked
  3. You can utilise CakePHP's built-in SEF routing, so instead of URLs with /search?q=contact you can get /search/contact
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.