Results 1 to 5 of 5

Thread: Search Script

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Feb 2006
    Posts
    22

    Search Script

    Hell everyone, I've been making a search script for my website. Iam having troubles with the MySQL databasing though.

    What object would query a table for keywords...

    Thanks

  2. #2
    Member AWC_Joe's Avatar
    Join Date
    Jan 2006
    Location
    Located
    Posts
    49

    Re: Search Script

    Heres a few ive used:
    PHP Code:
    # general search
    WHERE search_field LIKE '%".$_GET['q']."%' 
    PHP Code:
    # starts with letter "whatever"
    WHERE search_field LIKE '".$_GET['q']."%'' 
    PHP Code:
    # startes with number
    WHERE search_field LIKE '[0-9]%'' 
    PHP Code:
    # working with numbers, greated-then and less-then
    WHERE search_field '1970' 

    _
    |
    Some programs and scripts ive made: http://wiki.anotherwebcom.com
    What was once an opinion, became a fact, to be later proven wrong...

  3. #3

    Thread Starter
    Junior Member
    Join Date
    Feb 2006
    Posts
    22

    Re: Search Script

    Ok so the code
    PHP Code:
    # general search 
    WHERE search_field LIKE '%".$_GET['q']."%' 
    Basically searches for keywords 'q',

  4. #4
    Member AWC_Joe's Avatar
    Join Date
    Jan 2006
    Location
    Located
    Posts
    49

    Re: Search Script

    Nope...

    $_GET['q']
    Will pull the info attached to the url.com?q=whatever

    This would search for the keyword q
    PHP Code:
    WHERE search_field LIKE '%q%' 
    PHP Code:
    WHERE search_field LIKE '%search word%' 
    _
    |
    Some programs and scripts ive made: http://wiki.anotherwebcom.com
    What was once an opinion, became a fact, to be later proven wrong...

  5. #5

    Thread Starter
    Junior Member
    Join Date
    Feb 2006
    Posts
    22

    Re: Search Script

    Ok great thanks for the help!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width