Quote:
Originally Posted by Wanna
You are missing semicolon on the following rule:
PHP Code:
$getPage = ' ' //replaced NULL with ' '
change it to:
PHP Code:
$getPage = ' '; //replaced NULL with ' '
|
You can ignore that. I forgot the semi-colon when I typed in the code. TYVM. I fixed it in the code above.