Dashboard Temp Share Shortlinks Frames API

HTMLify

simple-webpage.php
Views: 747 | Author: demo
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
<!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>