8 lines
210 B
PHP
8 lines
210 B
PHP
|
<?php
|
||
|
|
||
|
$template = <<<END
|
||
|
You wake up feeling refreshed and ready for action.<br /><br />
|
||
|
You may return to <a href="index.php">town</a>, or use the direction buttons on the left to continue exploring.
|
||
|
END;
|
||
|
|
||
|
?>
|