Hey all, Im trying to put a submit news box on my admin page but for some reason my top box, Headline: "Textbox here", is not showing up on my page. Am I doing something wrong? Did I miss a tag somewhere?? Thanks in advance.
<tr>
<td>
<br>
<!--Display Add News Box-->
<h3>Add News</h3>
<table>
<form action="admin/adminprocess.php" method="post>
<tr><td>
Headline:<br>
<input type="text" name="headline" maxlength="50" value="<?php echo $form->value("headline"); ?>">
</td>
<td>
Date:<br>
<input type="text" name="date" maxlength="8" value="<?php echo $form->value("date"); ?>">
</td></tr>
<tr><td>
Content:<br>
<textarea type="text" rows="6" cols="50" name="text" maxlength="50" value="<?php echo $form->value("text"); ?>"></textarea><?php echo $form->error("text"); ?><br>
</td></tr>
<tr><td>
<input type="hidden" name="subnews" value="1">
<input type="submit" value="Submit News">
</td></tr>
</form>
</table>
</td>
</tr>
<tr>
<td><hr></td>
</tr>