A simple question that could remove the need for quite a lot of if/else
statements.
If, for example, I have such a query:
if ($success1=$db->query('SELECT * FROM `foo`;') || $success2=$db->query('SELECT * FROM `bar`;')) {
...
}
Would it stop checking when the first query is successful or not?