15 lines
162 B
PHP
15 lines
162 B
PHP
|
#!/bin/php
|
||
|
|
||
|
<?php
|
||
|
include "body_open.php";
|
||
|
?>
|
||
|
|
||
|
<h1> Welcome! </h1>
|
||
|
|
||
|
<p> This is a test. It can be ignored. :) </p>
|
||
|
|
||
|
<?php
|
||
|
include "body_close.php";
|
||
|
?>
|
||
|
|