View Single Post
  #9 (permalink)  
Old 11-20-2008, 03:32 PM
drkenneth's Avatar
drkenneth drkenneth is offline
Executive VIP
 
Join Date: Nov 2008
Location: USA
Posts: 285
Thanks: 20
Thanked 166 Times in 79 Posts
Reputation: 24
iTrader: (0)
Default Re: Send Traffic Through Site As Referer

Quote:
Originally Posted by kraze98nyc View Post
I'm getting an error on line 6 of the second page...

Parse error: syntax error, unexpected T_SL in xxxxxxxxxxxxx on line 6
Quote:
T_SL is the /T/oken for the /S/hift /L/eft operator (<<).
so "unexpected T_SL" means there is an occurence of << that is
syntactically incorrect. this commonly happens when you use heredoc
syntax ("<<<") and have whitespace before or after the closing
identifier.
see
http://www.php.net/manual/en/languag...guage.types.st
ring.syntax.heredoc for details.
So, make sure the final identifier (the three <<<) does not have any whitespaces before or after it--it's picky.
Reply With Quote