12 lines
297 B
PHP
12 lines
297 B
PHP
|
<?php
|
||
|
|
||
|
$template = <<<END
|
||
|
{{story}}
|
||
|
<hr />
|
||
|
<form action="story.php" method="post">
|
||
|
<input type="submit" name="submit" value="Fight the Monster" />
|
||
|
</form><br /><br />
|
||
|
If you don't want to fight the monster yet, please continue exploring using the direction buttons or the Travel To menus.
|
||
|
END;
|
||
|
|
||
|
?>
|