10 lines
367 B
PHP
10 lines
367 B
PHP
|
<?php
|
||
|
|
||
|
$template = <<<END
|
||
|
The Characters section lets you create and modify the characters on your account, and select a default character to play with. Each account is allowed to create up to 4 different characters.<br /><br />
|
||
|
You have not made any characters yet.<br /><br />
|
||
|
<a href="users.php?do=charnew">Click here to create your first character.</a>
|
||
|
END;
|
||
|
|
||
|
?>
|