Quote:
Originally Posted by Mastar
This is that error I get:
Parse error: parse error, unexpected T_STRING in /home/thebedrock/domains/thebedrocktavern.com/public_html/Taverndownunder/newthread.php(68) : eval()'d code on line 128
|
I see the error. You have a lot of things not in quotes.
eg.
You have:
$formtitle = STAFF APPLICATION FORM;
";
should be
$formtitle = "STAFF APPLICATION FORM";
you have:
$posttitle = STAFF APPLICATION;
should be:
$posttitle = "STAFF APPLICATION";