What is the output here?
Top Questions
<?php
$x = 'Sunil';
echo ‘Hello $x’;
?>a. hello sunil
b. Parse error
c. hello $x
d. syntax error
ANS: c
published by www.w3answers.com
<?php
$x = 'Sunil';
echo ‘Hello $x’;
?>a. hello sunil
b. Parse error
c. hello $x
d. syntax error
ANS: c
published by www.w3answers.com
Post new comment