Welcome Guest, Not a member yet? Register   Sign In
How to get single message for multiple objects?
#2

(This post was last modified: 02-04-2015, 06:10 PM by RobertSF.)

Hi Rajesh. Fortunately, I think the solution to your problem is easy.

This line of code in your callback function
PHP Code:
if($category=='' && $sub_category=='' && $occasion==''

should be instead
PHP Code:
if($category=='' || $sub_category=='' || $occasion==''

This is because, when you use && (and), it's only TRUE if all three fields are '', but you want it to be TRUE if any field is '', so you must use || (or).
Hey, don't work without a PHP debugger. Several free IDEs have this features built in. Two are NetBeans and CodeLobster. Without a debugger, it's like you're driving with a blindfold on -- you are going to crash!
Reply


Messages In This Thread
RE: How to get single message for multiple objects? - by RobertSF - 02-04-2015, 06:08 PM



Theme © iAndrew 2016 - Forum software by © MyBB