Q. What will be the output of the following PHP code ?
Code:<?php
$str = 'Hello';
echo 'World{$str}PHP';
?>
β
Correct Answer: (C)
World{$str}PHP
<?php
$str = 'Hello';
echo 'World{$str}PHP';
?>
You must be Logged in to update hint/solution