Thread
:
Why Does ' ' Work Better Than NULL in This Code?
View Single Post
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
You are missing semicolon on the following rule:
PHP Code:
$getPage
=
' '
//replaced NULL with ' '
change it to:
PHP Code:
$getPage
=
' '
;
//replaced NULL with ' '
Wanna
View Public Profile
Find More Posts by Wanna