8 lines
362 B
PHP
8 lines
362 B
PHP
|
<?php
|
||
|
|
||
|
$template = <<<END
|
||
|
If you are buying the {{newname}}, then I will buy the {{oldname}} for {{oldsell}} Gold. Is that ok?<br /><br />
|
||
|
<form action="index.php?do=buy" method="post"><input type="hidden" name="idstring" value="{{newidstring}}" /><input type="submit" name="three" value="Yes" /> <input type="submit" name="pullout" value="No" /></form>
|
||
|
END;
|
||
|
|
||
|
?>
|