Quote:
Originally Posted by phill2003
I would like the thread title to be what the user inputs for the first variable . . .
|
PHP Code:
<plugin active=\"1\">
<title>Form Hack</title>
<hookname>newthread_start</hookname>
<phpcode><![CDATA[// To add more then one form, copy this whole text, and creat a new plug-in with the hook location 'newthread_start'.
// After, change the form name. You can't have 2 forms with the same name.
// Name of this form
$formname = \"form\";
if ($_REQUEST['do'] == $formname)
phill2003, assign your 'user inputed' title (ie: $answer1) to '$posttitle' here after commenting '$formtitle = \"Generic Form\";' out. . .
PHP Code:
// $formtitle = \"Generic Form\";
//////////////////////////////////////////////////
//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\";