Learn php. Hello world will not be displayed using easyphp and writing in notepad ++

advertisements
<html>

<!--HTML-->
<head><title>a quick test</title></head>
<body>a quick test</body>

<p>javascript</p>

<!--javascript-->
<p><script>
document.write("hello world")
</script></p>

<p>php</p>

<!--php-->
<?php
Echo "hello world";
?>

</html>

The Hello world works for javascript but not in php, what gives? Any suggestions or obvious errors?

thanks


Are you saving this file with a .php file extension? PHP code will not execute within a normal .html file.