HTMLify

simple-webpage.php
Views: 203 | Author: demo
<!DOCTYPE html>
<html>
<head>
    <title>My PHP Web Page</title>
</head>
<body>
    <h1>Welcome to my PHP Web Page</h1>
    <?php
        $message = "Hello, World!";
        echo "<p>$message</p>";
    ?>
</body>
</html>

Comments