Thanks Abe1 for you help and support thus far. I am having issues as to the proper code to replace $formtitle with.
I have 3 custom variables that I would like to combine to generate the thread title.
($subjecttitleans $subjectdateans and $subjectlocationans)
I have tried two different versions of code:
Code:
$newpost['title'] =& "$subjecttitleans" "$subjectdateans" "$subjectlocationans";
Code:
$newpost['title'] =& "$subjecttitleans $subjectdateans $subjectlocationans";
Both give me the following error code displayed at the top of the page (btw, line 266 is the first instance of the code replacment):
Code:
Parse error: parse error, unexpected '\"', expecting T_NEW or T_STRING or T_VARIABLE or '$' in /home/XXXXX/public_html/newthread.php(68) : eval()'d code on line 266
Also, the form does not load and instead I get a vB error message that says:
Code:
Invalid Forum specified. If you followed a valid link, please notify the administrator
Finally, if I just use one of my custom variables to replace
$formtitle the form loads properly and the resulting thread title has the proper
$subjecttitleans text.
Sorry, I am good with templates but ignorent on code. Any help on this would be greatly appreciated. Thanks!