I'm a complete novice with HTML and PHP. Recently I purchased an auto responder that requires me to edit a PHP file during the installation process as per directions provided in a read me file.
After editing the required file (globals.php) I am directed to run the installation program on the website by using my browser. However, on doing is I am presented with an error message as follows:
Parse error: parse error, unexpected T_VARIABLE in /nfs/cust/6/98/87/778896/web/responder/include/globals.php on line 10
The site is hosted by gate.com and, as required by gate, all files and folders are uploaded into the folder /web. So far everything works except line 10 which is $SiteName =
I'll be very grateful if someone could help me resolve this problem.
I'm including the entire file below.
-
<?php
-
//mysql.monkeezemarketing.com
-
$Host = "localhost";
-
$Database = "monkeez1_monkeez1";
-
$User = "monkeez1_monkeez1";
-
$Password = "xxxxxxxxx";
-
-
//www.monkeezemarketing.com
-
$SelfPath = "http://responder.com"
-
$SiteName = "monkeezemarketing"
-
-
"//www.monkeezemarketing.com"
-
$MediaPath = "/web/responder/media";
-
?>