<!DOCTYPE html>
<html>
    <head>
        <title>My First PHP Web Page</title>
    </head>
    <body>
        <?php print('Hello World!'); ?>
    </body>
</html>
this codes above are just displaying as code in the browser, it doesn't print "hello world". Please help
 
    