Jump to content

Radioactive Frog

Members
  • Posts

    20
  • Joined

  • Last visited

    Never

Posts posted by Radioactive Frog

  1. yeah that is what i meant, having different boxes coming in. sorry if i didnt make myself clear!

     

    i have managed to sort it now i am using the code....

    
    SELECT * FROM hotels WHERE (hotelname LIKE \'%$hotelplace%\' OR hoteladdress LIKE \'%$hotelplace%\' OR hotelcountry LIKE \'%$hotelplace%\' OR hotelphone LIKE \'%$hotelplace%\') AND (hotelcountry LIKE \'%$country%\') AND (hotelrating LIKE \'%$rating%\') LIMIT 0, 50
    
    

     

    which works nicely!!

     

    All i gotta sort out now is what happens if the user enters a comma or other punctuation on the search field!!

     

    cheers

     

    RF

  2. i have the following query

     

    
    SELECT * FROM hotels WHERE hotelname LIKE \'%$search%\' OR hotelcountry LIKE \'%$search%\' OR hoteladdress LIKE \'%$search%\' 
    
    

     

    i have one search value coming in....but what if there is $search2 AND OR $search3 .....

     

    please could someone enlighten me on this.... thanks

     

    p.s. one of the values coming in would be a INT if it makes any difference !!

     

    dont worry, sorted it !!

     

    thanks

  3. i have this query for searching one field

     

    
    SELECT * FROM `hotels` WHERE hotelname LIKE \'%j%\'
    
    

     

    at it works ok, but i would like to search say two more fields i thought it would be like below but that dont work :( please could someone point out where i am going wrong....thanks

    
    SELECT * FROM `hotels` WHERE hotelname OR hotelcountry OR hoteladdress LIKE \'%j%\'
    
    

     

    thanks

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.