8 lines
148 B
PHP
8 lines
148 B
PHP
|
<?php
|
||
|
|
||
|
$template = <<<END
|
||
|
The player has declined the duel challenge.<br /><br />
|
||
|
<a href="index.php">Click here to return to the game.</a>
|
||
|
END;
|
||
|
|
||
|
?>
|