Could somebody check and fix the error pls?
Error:
Parse error: syntax error, unexpected 'echo' (T_ECHO), expecting ',' or ';' in C:\wamp\www\SHP\php_echo_print.php on line 12
code:
<!DOCTYPE html >
<html >
<head>
<title>php_echo_print</title>
</head>
<body>
<?php
echo "<h2> PHP is fun! </h2>";
echo "Hello World! <br>";
echo "I'm about to learn PHP!<br>"
echo "This", " string", " was", " made", " with multiple parameters.";
?>
</body>
</html>