-1

I'm learning web development and embedding PHP into the website. In running a basic HTML script like this:

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
    <title></title>
</head>
<body>
    <?php
    echo "Hello World";
    ?>
</body>
</html>

the Hello World, does not show in the browser. What am I doing wrong?

1 Answers1

0

Save as a .php file ext name. If that doesn't work let me know. Thanks

Siimm Kahn
  • 110
  • 2
  • 10