What will be the output of the following PHP code ?
<?php
$one = "Hello";
$two = "World";
echo "$one$two";
?>
<?php
$one = "Hello";
$two = "World";
echo "$one$two";
?>
A. HelloWorld
B. $one$two
C. Hello
D. Error
Answer: Option A

Join The Discussion