Jump to content

"== " 2 values..


techker

Recommended Posts

<? echo ($info['Status'] == 'Sold' || $info['Status'] == 'on hold') ? "<span class='echo'>".$info['Status']."</span>" :"For sale"; ?>

 

You have to repeat the variable, you can't just do two values separated by a ||.

 

If you need more values, it may be more beneficial to use an array of values and the in_array function.

Link to comment
Share on other sites

so basicly || is like an AND.

thanks for the help!

 

|| is not like and, example, in your case if you had:

 

<? echo ($info['Status'] == 'Sold' && $info['Status'] == 'on hold') ? "<span class='echo'>".$info['Status']."</span>" :"For sale"; ?>

 

Using the && and operator, this would mean that Both conditions would have to be met in order for you to receive the TRUEnternary response. However in your case, since you are using the || or operator, only one of the conditions needs to be met in order for the TRUE ternary response to output.

Link to comment
Share on other sites

<? echo ($info['Status'] == 'Sold' || $info['Status'] == 'on hold') ? "<span class='echo'>".$info['Status']."</span>" :"For sale"; ?>

 

You have to repeat the variable, you can't just do two values separated by a ||.

 

If you need more values, it may be more beneficial to use an array of values and the in_array function.

 

I didn't realize that. Thanks for the correction. :)

Link to comment
Share on other sites

so basicly || is like an AND.

thanks for the help!

 

|| is not like and, example, in your case if you had:

 

<? echo ($info['Status'] == 'Sold' && $info['Status'] == 'on hold') ? "<span class='echo'>".$info['Status']."</span>" :"For sale"; ?>

 

Using the && and operator, this would mean that Both conditions would have to be met in order for you to receive the TRUEnternary response. However in your case, since you are using the || or operator, only one of the conditions needs to be met in order for the TRUE ternary response to output.

 

this is the one i need.since they want in red on hold or if the car is sold.but i understand the && and toke note of it.thx for the help guys!

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.