MyBB Community Forums

Full Version: Making another new thread page?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey everyone! Id like to make a custom newthread page.
I have gotten as far as making a form (this page is not a new thread page its a page I made with a Page management addon) and this is what I have so far:

<form id="B" action="" method="POST" enctype="multipart/form-data">
<input name="title" placeholder="Enter question title here" name="subject" />
<textarea name="message"></textarea>
<input value="Submit question" type="submit" />
</form>
When I press the submit button it just takes me to the newthread page. I want it to post my thread when I press the submit button
just a note: html code is not sufficient as you have to deal with the database

Edit: you can try using new thread plugin and change its form if required
Ahhh.. Thanks! That should do the trick. Il let you know what happens.