Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: MYSQL while function

by greywolf (Priest)
on Sep 07, 2002 at 03:04 UTC ( [id://195827]=note: print w/replies, xml ) Need Help??


in reply to MYSQL while function

You might want to try bracketing your where clauses to ensure you are testing for the conditions you really want. It never hurts to be explicit with your logic. For example:
WHERE category = '$id' AND (description LIKE '%$search%' OR itemid LIK +E '%$search%' OR longdescription LIKE '%$search%') is different from WHERE (category = '$id' AND description LIKE '%$search%') OR itemid LI +KE '%$search%' OR longdescription LIKE '%$search%'
That being said, you really should try to implement some of the suggestions from other monks if you are going to post more than 1 question on essentially the same problem.

mr greywolf

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://195827]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (4)
As of 2024-04-19 17:47 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found