Result Size:
625 x 571
tryphp_oper_ternary.php:
<!DOCTYPE html> <html> <body> <?php // if empty($user) = TRUE, set $status = "anonymous" echo $status = (empty($user)) ? "anonymous" : "logged in"; echo("<br>"); $user = "John Doe"; // if empty($user) = FALSE, set $status = "logged in" echo $status = (empty($user)) ? "anonymous" : "logged in"; ?> </body> </html>
anonymous
logged in