Connecting Tech Pros Worldwide Forums | Help | Site Map

How to retrieve data from mysql using drop down menu with text search field.

mmarif4u's Avatar
Newbie
 
Join Date: Sep 2006
Location: Malaysia
Posts: 23
#1: Sep 30 '06
Hi everyone,
I have a little problem in php coding.
i have mysql table guestbook:
Fields are Id,name,email,comment,datetime.
Now i want to search the database by php query using
a Dropdown menu (for example Name,Id) with a text search field.
What will be the query.
Can anyone help me with details.
thanks.

ronverdonk's Avatar
Moderator
 
Join Date: Jul 2006
Location: The Netherlands
Posts: 4,139
#2: Sep 30 '06

re: How to retrieve data from mysql using drop down menu with text search field.


May I conclude from your question ("What will be the query?") that you already have the drop-down and the textbox? If so, the table query can be defined as something like (search items in $search1 and $search2):
Expand|Select|Wrap|Line Numbers
  1. $sql  = 'SELECT Id, Name ';
  2.         $sql .= 'FROM MyTable ';
  3.         $sql .= 'WHERE Name REGEXP "' . $search1 . '" ';
  4.         $sql .= 'AND Id REGEXP "' . $search2 . '" ';
  5.         $sql .= 'ORDER BY Id';
Ronald :cool:
mmarif4u's Avatar
Newbie
 
Join Date: Sep 2006
Location: Malaysia
Posts: 23
#3: Oct 2 '06

re: How to retrieve data from mysql using drop down menu with text search field.


Quote:

Originally Posted by ronverdonk

May I conclude from your question ("What will be the query?") that you already have the drop-down and the textbox? If so, the table query can be defined as something like (search items in $search1 and $search2):

Expand|Select|Wrap|Line Numbers
  1. $sql  = 'SELECT Id, Name ';
  2.         $sql .= 'FROM MyTable ';
  3.         $sql .= 'WHERE Name REGEXP "' . $search1 . '" ';
  4.         $sql .= 'AND Id REGEXP "' . $search2 . '" ';
  5.         $sql .= 'ORDER BY Id';
Ronald :cool:

Thanks Ronald for reply.
i dont have the complete code in php.
Can u help me here in code.
Thanks.
Newbie
 
Join Date: Oct 2006
Posts: 1
#4: Oct 18 '06

re: How to retrieve data from mysql using drop down menu with text search field.


Did you ever get the complete answer?
Reply