Skip to main content
Participant
June 26, 2009
Question

Simple Search Form

  • June 26, 2009
  • 2 replies
  • 465 views

I am having a really annoying problem with my single field search form. When I search for results I want it to load a page with a form with all the fields filled in.

I have this method working on another page.

The form is on member_search.php and the form field is name 'mid'. I have the form action set to member_search2.php which has the complete member profile form on it.

I have a recordet on member_search2.php with the filter is mid = form varriable mid and have all the fields dynamic.

But when I search it loads the member_search2.php with all fields blank.

Any help is wonderful!

Thanks,

Nicole

This topic has been closed for replies.

2 replies

June 29, 2009

I guess u should name the text field where u want to search it as 'mid' instead of that form.

David_Powers
Inspiring
June 26, 2009

What is your form Method set to? If it's set to POST, form variable is correct, but if it's set to GET, you should use URL parameter as your filter.

Participant
June 26, 2009

It is set to POST.