View Single Post
Old 10-07-2011, 08:13 AM   PM User | #5
Wanna
Regular Coder

 
Join Date: Sep 2011
Posts: 128
Thanks: 2
Thanked 21 Times in 21 Posts
Wanna is an unknown quantity at this point
You are missing semicolon on the following rule:
PHP Code:
$getPage ' '                //replaced NULL with ' ' 
change it to:
PHP Code:
$getPage ' ';                //replaced NULL with ' ' 
Wanna is offline   Reply With Quote