d529178672
8.09.2006 - Build 17 (Haiku): - Moved stylesheets into .css files. - Added javascript tooltips for the class info when creating a new character. - Changed doquery() format - rewrote all calls to this function to match the new format. - Various changes to the structure of lib.php. - Implemented Anman's increased attack and defense spells (Blessed Strike & Stone Skin). - Fixed class display in profile view. - Began admin control panel. - Various little bitty fixes. - You can no longer gamble 0 gold. - Added new level stat type: life. - Monsters can now do excellent hits, and you can now dodge monsters. - Removed several columns from controlrow that are no longer used.
16 lines
1004 B
PHP
16 lines
1004 B
PHP
<?php
|
|
|
|
$template = <<<END
|
|
<h3>Add a Realm</h3>
|
|
<a href="index.php?do=realms&fn=realms">Back to Realms List</a><br /><br />
|
|
<form action="index.php?do=realms&fn=realms&action=new" method="post">
|
|
<table cellspacing="0" cellpadding="5" width="98%">
|
|
<tr><td width="25%">Realm Name</td><td><input type="text" name="name" size="20" maxlength="30" /><br /><span class="grey">The name of this Realm.</span><br /><br /></td></tr>
|
|
<tr><td width="25%" class="td_alt">Realm Size</td><td class="td_alt"><input type="text" name="size" size="5" maxlength="5" /><br /><span class="grey">Realms are divided into four square quadrants. This number is the length/width of each individual quadrant.<br />Range: 0 to 65535.</span><br /><br /></td></tr>
|
|
<tr><td colspan="2" style="border-top: solid 2px black;"><center>
|
|
<button type="submit" name="submit"><img src="icons/tick.png" align="top" /> Save</button> <button type="reset"><img src="icons/cross.png" align="top" /> Reset</button>
|
|
</center></td></tr>
|
|
</table>
|
|
END;
|
|
|
|
?>
|