Hi, im attempting to learn php with lynda.com´s videos and everything was going great, i got the <?php phpinfo(); ?> to work but then the hello world example came and I thought I did it right until the output gave me an error, heres my php code and the output
<html>
<head>
<title>Hello World!</title>
</head>
<body>
<?php echo ¨Hello World!¨; ?>
</body>
</html>
and my output is
Parse error: syntax error, unexpected T_STRING, expecting ',' or ';' in /home/dlusionz/public_html/php/hello.php on line 6
im not sure what to do, I realize that its looking for ¨,¨ or ¨;¨ but i did include it, so im confused, I hope someone can assist me with this