View Single Post
  #2  
Old 30th May 2011, 20:48
DAKz's Avatar
DAKz DAKz is offline
Senior Member
 
Join Date: Jul 2009
P2P
Posts: 380
Exclamation syntax error and fix
Quote:
Originally Posted by smoky28 View Post
Firewall required PHP 5th
Small syntax error....
The code above has an extra space in it...
PHP Code:
define ('PHP_FIREWALL_REQUEST_URI'strip_tags ($ _SERVER ['REQUEST_URI'])); 
Should be....
PHP Code:
define ('PHP_FIREWALL_REQUEST_URI'strip_tags ($_SERVER ['REQUEST_URI'])); 
The extra space between the ($ and the _SERVER)

Great post though!!
Reply With Quote