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 am trying to set up a simple php/mysql database on my website and the example has a line that says:

 if (!$searchtype || !?searchterm) {

What are the ||??? I tried to copy and paste them but they cause syntax errors. Noob question I know, but would love an answer nonetheless!

share|improve this question

3 Answers

up vote 5 down vote accepted

its ||(OR) logical operator

$a || $b Or TRUE if either/both $a or $b is TRUE.

and it should be

if (!$searchtype || !searchterm) {

as in op this Comment you can write this by

enter image description here

share|improve this answer
Either $a or $b or both. Because there's also xor, which is either $a or $b but not both. – Arjan Dec 4 '12 at 6:35

I think the code actually is :

 if (!$searchtype || !$searchterm) {

|| means OR operator, meaning conditions is satisfied if either of the condition is true.

share|improve this answer
but how do I type || in on my .html files? I dont know what symbol those are. – Stuave Dec 4 '12 at 6:31
See what lies just below the backspace key. – DhruvPathak Dec 4 '12 at 6:32
I found them on the keyboard above the enter button. Thanks! – Stuave Dec 4 '12 at 6:32

Its an OR logical operator for handling conditions:

Ex :

$a || $b

Or TRUE if either $a or $b is TRUE.

See : http://php.net/manual/en/language.operators.logical.php

for more details

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.