Simple Search facility

This is a discussion on Simple Search facility within the alt.comp.lang.php forums, part of the PHP Programming Forums category; Hi there, I am trying to implement a simple search facility on my DVD shop website. I want to allow ...


Go Back   Usenet Forums > PHP Programming Forums > alt.comp.lang.php

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 01-20-2004
James
 
Posts: n/a
Default Simple Search facility

Hi there,
I am trying to implement a simple search facility on my DVD shop website. I
want to allow the user the ability to search the DVDs by genre. I have the
following SQL code to use:

select * from DVD where genre LIKE '%Drama%'

I am using the LIKE statement as the genre of a film may be Action/Drama for
example.

I am not sure how to implement this, I want to have links that display the
name of each genre and then the page displays the DVDs in that genre. I am
not sure what to include in the anchor tag.

Any help on this would be great.


Reply With Quote
  #2 (permalink)  
Old 01-25-2004
Bryan Chan
 
Posts: n/a
Default Re: Simple Search facility

Sample link on genre page:
<a href="dvd.php?genre=action">Action</a><br/>
<a href="dvd.php?genre=drama">Drama</a>

DVD Table contains:
ID | Genre
---------------
1 | Action
2 | Drama
3 | Action/Drama
4 | Action/Comedy

SQL in dvd.php:
$rResult = mysql_query("select * from DVD where genre like '%" .
$_GET["genre"] . "%'");

When genre = Action, select would return record ID 1, 3 and 4
When genre = Drama, returns record ID 2 and 3

Bryan

"James" <nospamheredude@yahoo.com> wrote in message
news:buk4hb$sg8$1@hercules.btinternet.com...
> Hi there,
> I am trying to implement a simple search facility on my DVD shop website.

I
> want to allow the user the ability to search the DVDs by genre. I have the
> following SQL code to use:
>
> select * from DVD where genre LIKE '%Drama%'
>
> I am using the LIKE statement as the genre of a film may be Action/Drama

for
> example.
>
> I am not sure how to implement this, I want to have links that display the
> name of each genre and then the page displays the DVDs in that genre. I am
> not sure what to include in the anchor tag.
>
> Any help on this would be great.
>
>



Reply With Quote
Reply
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

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



All times are GMT +1. The time now is 07:23 PM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0