8 lines
181 B
PHP
8 lines
181 B
PHP
|
<?php
|
||
|
|
||
|
$template = <<<END
|
||
|
Thank you for purchasing this map.<br /><br />
|
||
|
You may return to <a href="index.php">town</a>, or use the direction buttons to continue exploring.
|
||
|
END;
|
||
|
|
||
|
?>
|