Log in

View Full Version : PHP error help



Marcus-Hill
03-28-2008, 04:22 PM
Hi,

I'm trying to install a PHP auction site script and have followed the install instructions to the T, but when I run the install.php I get the message-

Parse error: syntax error, unexpected T_STRING in /home/Auction/public_html/webmasters-auction/config.php on line 9

Here is the line in question-

$copyright_name = "Copyright 2008 www.MakeQuickCashOnlineNow.com";

What does this mean? Can anyone tell me where I'm going wrong?

Cheers!

tonyking
03-28-2008, 04:45 PM
I beleive if you revise your code to this:



$copyright_name = 'Copyright 2008 www.MakeQuickCashOnlineNow.com';


You will no longer receive the error. Note I changed the double quotes to single quotes. I'm no guru, but I think that's the problem and you can't hurt anything trying.