R
Q. What will be the output of the following PHP code?
<?php $car = "Honda"; switch ($car) { case "Honda": echo "You selected Honda."; case "BMW": echo "You selected BMW."; case "AUDI": echo "You selected Audi."; default: echo "None is selected."; } ?>
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. If $a = 12 what will be returned when ($a == 12) ? 5 : 1 is executed?
Q. Object are created using _______ keyword?
Q. Which PHP functions are used to convert string to lowercase and uppercase?
Q. Which of following variables can be assigned a value to it?
Q. What will be the output of the following PHP code?
Q. What will be the output of the following PHP code ?
Discusssion
Login to discuss.