Is it possible to add the "OR" operator to php isset submit form code when there are two submit buttons with different names? Eg:
if (!isset($_POST['submitRequest'] || $_POST['submit']))
The above code prompts and an error. Please advice.
|
Is it possible to add the "OR" operator to php isset submit form code when there are two submit buttons with different names? Eg:
The above code prompts and an error. Please advice. |
||||
|
try:
|
|||
|
|
|
No, it isn't possible. You need each variable in its own isset functioYou cannot combine them. |
|||
|
|
|
That's not how to use the or operator. You have to put it between two isset calls.
You always have to take a good look at the syntax. Remember that the or operator is used to make an entire condition evaluate to true if the left condition or the right condition is true. As such, you always need to use the or operator with two conditions. Also, if you want to do this with the and operator, you can just use one isset call.
|
|||||||||||
|
|
You need to call the isset function on respective variables individually. You have an option of using either of the two syntax, depending on the convention you follow.
|
|||
|
|
|
You can use
Be careful when passing multiple arguments to
So |
|||||
|
|
|
to elaborate a bit:
The important part here is: they only check variables, they can't and don't evaluate the results of expressions.
The use of |
|||
|
|
|
I know I had misunderstood the original post.
Original (incorrect) You can use this:
If multiple parameters are supplied, the function will check all of them. This will return TRUE only if all of the parameters are set. Reference: http://php.net/manual/en/function.isset.php |
|||||
|
TRUEwhen both is set, both is not set or what else? The way you show the code is confusing. – Alvin Wong Jun 20 '12 at 10:16