8 lines
137 B
PHP
8 lines
137 B
PHP
|
<?php
|
||
|
|
||
|
$template = <<<END
|
||
|
Thank you for accepting this item.<br /><br />
|
||
|
You may now <a href="index.php">continue exploring</a>.
|
||
|
END;
|
||
|
|
||
|
?>
|