WOW all that and the coding was correct. I didn't realize that option was reserved o-O..
Thanks!! Works. Now..
Now here's a question..that just hit me.
I'm trying to make forms have some default data in them already.. generated by php
Template
<form method='post' action="index.php?page=admin_boardonoff">
<tr>
<td class='forumcell' width='20%'>Board Status</td>
<td class='forumcell' width='80%'><input name="board_status" MAXLENGTH="3" value="<? echo($config['board_status']); ?>"> Change this to off or on.</td>
</tr>
<tr>
<td class='forumcell' width='20%'>Board Offline Message</td>
<td class='forumcell' width='80%'><input name="board_offline_message" value="<? echo($config['board_offline_message']); ?>"> Change your away meesage if your board is offline.</td>
</tr>
<tr>
<td colspan='2' class='forumcell' width='100%' align='center'><input type='submit' name='submit' value='Update Board'></td>
</tr>
</form>
Now here's my code for it.
$configs = mysql_query("SELECT * FROM configs");
$config = mysql_fetch_array($configs);
Now, any reason why this wouldn't show correctly?