What are the differences between using OR and AND operators in PHP while loops?

Using the OR operator in a PHP while loop will continue the loop as long as at least one of the conditions is true. On the other hand, using the AND operator in a PHP while loop will continue the loop only if all conditions are true. It's important to understand the differences between these operators to ensure that your loop behaves as intended.

// Example of using OR operator in a while loop
$counter = 0;
while ($counter < 5 OR $counter > 10) {
    echo $counter . " ";
    $counter++;
}

// Example of using AND operator in a while loop
$counter = 0;
while ($counter < 5 AND $counter > 10) {
    echo $counter . " ";
    $counter++;
}