I just started PHP I got my XAMMP server up and running and now I made my first html test page and added one line of PHP script but it isn't showing in my browser.
    <!DOCTYPE html>
<html lang="nl">
<head>
    <title>Mijn php-script</title>
</head>
<body>
    <?php
    phpinfo();
    ?>
</body>
</html>
It does however shows the title I gave it, can anybody tell me why the rest isn't showing? it should show the info version page of my PHP.
 
    