<!DOCTYPE html>
<html>
<body>
<?php
echo "<h2>PHP is fun!</h2>";
echo "hello world";
echo "I'm about to learn PHP! <br>";
echo "This", " string", " was", " made", " with multiple parameters.<br><br>";
$text1 = "Learn PHP";
$text2 = "w3School.com.cn";
$cars = array("volvo","BWM","SAAB");
/*echo "<br>$text1";
echo "<br>";
echo "Study PHP at $text2 <br>";
echo "MY car is a {$cars[0]}";
*/
print "<h2> PHP is fun</h2>";
print "hello world";
print "I'm about to learn PHP";
print "<br>$text1";
print "<br>";
print "study PHP at $text2<br>";
print "my car is a {$cars[0]}"
?>
</body>
</html>