DMXzone Database Connector PHP Support Product Page
Answered
how to have a page with my form filter and another page of results.
Asked 10 years ago
1
has this question
10 years ago Souhaib Agharbi posted:
Hi,I want to know how to configure database extension for:
-A page with my form filter
-Another Results page.
thank you
Replies
Replied 10 years ago
10 years ago Teodor Kuduschiev replied:
Hello,
If you want to have a separate result page, you'd better use a URL variable in order to filter the results. Just pass your form variable to the url of the page.
If you want to have a separate result page, you'd better use a URL variable in order to filter the results. Just pass your form variable to the url of the page.
Replied 10 years ago
10 years ago Souhaib Agharbi replied:
Thank you for your reply,
My goal is to use the post method so that information entered into my search form not in plain text in the URL.
How to proceed with the post method
My goal is to use the post method so that information entered into my search form not in plain text in the URL.
How to proceed with the post method
Replied 10 years ago
10 years ago Teodor Kuduschiev replied:
Hello,
Unfortunately this is not possible. You should either have the results on the same page or use url variable in order to use a separate page.
I recommend the first method - you can filter the results on the same page without even refreshing the page.
Unfortunately this is not possible. You should either have the results on the same page or use url variable in order to use a separate page.
I recommend the first method - you can filter the results on the same page without even refreshing the page.
Replied 10 years ago
10 years ago Justin Mitchell replied:
This resolved my issue as well. I was using POST to submit forms to a separate page and couldn't figure out why the FORM variable wasn't working. As soon as I changed it to GET I was able to use the URL method to filter results. Thanks for the info!