Author Topic: Submit Not Showing Up?  (Read 533 times)

0 Members and 1 Guest are viewing this topic.

Offline rockstarremTopic starter

  • Irregular
  • Posts: 28
    • View Profile
Submit Not Showing Up?
« on: February 06, 2010, 09:35:06 AM »
Hello guys,

I made a form and the submit button is not showing up.

Code: [Select]
<form method="post" action="do_news.php">
Date (YYYY-MM-DD): <input type="text" name="date" /><br />
Poster: <input type="text" name="poster" /><br />
Post: <br />
<textarea name="post" cols="100" rows="20" />
<input type="submit" />
</form>

Any suggestions?

Offline haku

  • Guru
  • Freak!
  • *
  • Posts: 5,707
  • Old Man
    • View Profile
Re: Submit Not Showing Up?
« Reply #1 on: February 06, 2010, 11:05:28 AM »
Textareas cannot be self closed. Close that properly, and it should solve your problem.

Offline rockstarremTopic starter

  • Irregular
  • Posts: 28
    • View Profile
Re: Submit Not Showing Up?
« Reply #2 on: February 08, 2010, 10:53:09 PM »
Textareas cannot be self closed. Close that properly, and it should solve your problem.

Thank you!