ok...
When someone clicks "Post Reply"
there is only a message form to fill out..... Correct...??
What I want is a few more forms.. to fill out on the post reply page...
then I need to be able to grab the information from those forms...
example...
when i submit a reply.. <?php echo $cur_post['message']."\n" ?> grabs the message and post it as a reply..
I want there to be
<?php echo $cur_post['message']."\n" ?>
<?php echo $cur_post['message1']."\n" ?>
<?php echo $cur_post['message2']."\n" ?>
<?php echo $cur_post['message3']."\n" ?>
<?php echo $cur_post['message4']."\n" ?>
<?php echo $cur_post['message5']."\n" ?>
forms... or however many i want....
Then I want to be able to grab that information and have it posted in the reply as well..
hope you understand this...