Quote:
Originally Posted by ComputerVitals
Looking for an anwser as well.....
But I'm thinking it may lay with this bit of code.
Code:
////////////////////////////////////////////////////////////////////////////////////////////////////
//TITLE OF THREAD/POST/PM/EMAIL (do not use quotation marks in the title or you will get a parse error)
//You may use variables from the form for this.
////////////////////////////////////////////////////////////////////////////////////////////////////
$posttitle = "$formtitle";
|
Alright. I got it.
First you have to create a NORMAL INPUT BOX.
I will use $normalquestion1 as the example
once that is all set up then you can replace
$posttitle = "$formtitle";
to the following
$posttitle = "$normalanswer1";
Once this is done then what ever the user answers for $normalquestion1 will be the title of the thread.
The downfalls to this are if the users does not type an answer to $normalquestion1 then they click SUBMIT, the form will not get transmitted and all will be lost. So here is what I recommend to avoid this. If you still include $formtitle in the same place but add $normalquestion1 with it then it will still include the form title if the users forgets to answer $normalquestion1. This way the form will not get lost if they transmit it without answering $normalquestion1.
Here is how I do it.
Find:
$posttitle = "$formtitle";
replace with:
$posttitle = "$normalanswer1 = $formtitle ";
Gosh, I hope all this made sense.