A
Q. What will be the output of the following PHP code?
Code:
<?php
$x = 100;
if ($x < 200){
echo "True";
}
else{
echo "False";
}
?>
$x = 100;
if ($x < 200){
echo "True";
}
else{
echo "False";
}
?>
- Correct Answer - Option(A)
- Views: 22
- Filed under category PHP
- Hashtags:
Discusssion
Login to discuss.