Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have:

if($this->itemCount <= 11 ) {

$item['subtotal'] = 12.95 * $item['qty'];
$item['price'] = 12.95;
$this->update_item($item['id'], $item['qty'], $item['price']);
}

But I need an "and" operator in there to check whether or not its also equal to or greater than 2.

if($this->itemCount <= 11 && => 2 ) 

I don't know how to do this in PHP. :(

share|improve this question
Wow, I got a negative two for a question. Did I ask it poorly? Yipes. – adg May 18 '11 at 5:05

4 Answers

up vote 0 down vote accepted

You just need to write the full expression out:

if($this->itemCount <= 11 && $this->itemCount >= 2 ) 
share|improve this answer
Wowza! 4 answers a nano second after I hit the submit button. That's crazysauce. Love it, though. Thanks to all of you for responding :) I will wait the 8 minutes and come back and pick this answer. (Said I had to wait to answer it ?? ) – adg May 18 '11 at 4:10
it's a great community :) thanks – soulkphp May 18 '11 at 4:15
if($this->itemCount <= 11 && $this->itemCount >= 2) {
    // Your code here
}
share|improve this answer
Missed 6 seconds on entering captcha :-( +1 for quicker post ;-) – zerkms May 18 '11 at 4:05
This one is more correct, as the other two are using the 'double arrow' instead of the greater than or equal to expression. – jlmcdonald May 18 '11 at 4:09
@jlmcdonald: ooooooops – zerkms May 18 '11 at 4:11
@zerkms: great ... now that you've fixed your typo, my comment itself is inaccurate! :) – jlmcdonald May 18 '11 at 4:15

if($this->itemCount <= 11 && $this->itemCount => 2 )

share|improve this answer
LOL, guess we got the answer, there really were no answers when I started typing... – sirbrialliance May 18 '11 at 4:05
if($this->itemCount <= 11 && $this->itemCount >= 2 ) 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.