9 lines
300 B
PHP
9 lines
300 B
PHP
|
<?php
|
||
|
|
||
|
$template = <<<END
|
||
|
Thank you for your transaction.<br /><br />
|
||
|
You are now storing {{formatbank}} gold in the bank, and you are carrying {{formatgold}} gold in your pocket.<br /><br />
|
||
|
You may return to <a href="index.php">town</a>, or use the direction buttons to continue exploring.
|
||
|
END;
|
||
|
|
||
|
?>
|