7 lines
118 B
PHP
7 lines
118 B
PHP
|
<?php
|
||
|
|
||
|
$template = <<<END
|
||
|
You have traveled to {{name}}. You may now <a href="index.php">enter this town</a>.
|
||
|
END;
|
||
|
|
||
|
?>
|