TalkPHP
 
 
Account Login
Latest Articles
» The basic usage of PHPTAL, a XML/XHTML template library for PHP
» Vulnerable methods and the areas they are commonly trusted in.
» Simple way to protect a form from bot
» The Basics On: How Session Stealing Works
» How to keep your forms from double posting data
IRC Channel
IRC Speech Bubble Join the friendly bunch on IRC...
(#TalkPHP on Freenode)

...Also available via a web interface.

See this thread for information on the TalkPHP Free Hugs Initiative™. Subject to availability.
Associates
Associates
CSS Tutorials
Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old 08-20-2008, 05:32 PM   #1 (permalink)
The Wanderer
 
Join Date: Jun 2005
Posts: 21
Thanks: 1
Jako is on a distinguished road
Default Keyword Search Form

What's the easiest way to have a keyword search form?

Right now I have a successful search form, but the user must select a drop-down menu for the specific type of search they are making.

I'm using something like this right now.

PHP Code:
$sql "SELECT * FROM club WHERE club.club_name like 
            '%
$query%' ORDER BY club.club_name ASC";

$result mysql_query($sql) or die(mysql_error()); 
PHP Code:
while($row mysql_fetch_assoc($result)) {
//yada yada yada

Right now the above is if the user selected the club from the form drop-down. But, if someone also types in another keyword, like a last name, I want to query that as well.

I could probably write the sql query, just not sure how to echo it all, since each table that the information is stored in has different names.
Jako is offline  
Reply With Quote
Old 08-21-2008, 07:44 AM   #2 (permalink)
Jim
The Addict
 
Jim's Avatar
 
Join Date: Nov 2007
Location: the Netherlands
Posts: 281
Thanks: 2
Jim is on a distinguished road
Default

PHP Code:

$searchTypes 
= array('club_name''last_name'); // etc etc

if(in_array($_POST['searchType'], $searchTypes)) 
{
  
$sql "SELECT * FROM club WHERE ".$_POST['searchType']." like 
            '%
$query%' ORDER BY club.club_name ASC";

  
$result mysql_query($sql) or die(mysql_error()); 

else 
{
  
trow new Exception('zOMG no seachtype found!');

Something like this should work :)
__________________
Nunchaku! Who doesn't like martial arts? =)
Send a message via MSN to Jim Send a message via Skype™ to Jim
Jim is offline  
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT. The time now is 12:23 PM.

 
     

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Inactive Reminders By Icora Web Design