You have already completed these exercises!
Do you want to take them again?
You completed the PHP Echo and Print Exercises from W3Schools.com
Share on:
The two echo statements below will produce the same result:$name = 'Linus';echo '<h1>Hello $name</h1>';echo "<h1>Hello $name</h1>";
echo
$name = 'Linus';echo '<h1>Hello $name</h1>';echo "<h1>Hello $name</h1>";