What will be the output of the following PHP code ?
<?php
$x = 5;
{
$x = 10;
echo "$x";
}
echo "$x";
?>
<?php
$x = 5;
{
$x = 10;
echo "$x";
}
echo "$x";
?>
A. 1010
B. 105
C. 510
D. error
Answer: Option A
<?php
$x = 5;
{
$x = 10;
echo "$x";
}
echo "$x";
?>
A. 1010
B. 105
C. 510
D. error
Answer: Option A
What will be the output of the following PHP code ?
<?php
"Hello World"
?>
A. Error
B. Hello World
C. Nothing
D. Missing semicolon error
What will be the output of the following PHP code ?
<?php
print_r "Hello world"
?>
A. Error
B. Hello World
C. Nothing
D. Missing semicolon error
A. redredred
B. redred
C. red
D. Error
A. # Hello world
B. Hello world# Hello world
C. Hello world
D. Error
Join The Discussion