CSE :: PHP - CS
-
What will be the output of the following PHP code ?
<?php
"Hello World"
?>
-
What will be the output of the following PHP code ?
<?php
print_r "Hello world"
?>
-
What will be the output of the following PHP code ?
<?php
$color = "red";
echo "$color";
echo "$COLOR";
echo "$Color";
?>
-
What will be the output of the following PHP code ?
<?php
# echo "Hello world";
echo "# Hello world";
?>
-
What will be the output of the following PHP code ?
<?php
echo "Hello World"
?>
-
What will be the output of the following PHP code ?
<?php
echo "echo "Hello World"";
?>
-
What will be the output of the following PHP code ?
<?php
<?php
echo "Hello world";
?>
?>
-
What will be the output of the following PHP code ?
<?php
$color = red;
echo "$color";
?>
-
What will be the output of the following PHP code ?
<?php
$color = red;
echo "$color" . red ;
?>
-
What will be the output of the following PHP code ?
<?php
$color1 = red;
$color2 = green;
echo "$color1"."$color2";
?>