Quote Originally Posted by tenthilltoys View Post
Lankee I am having the same problem Can you explain "it was inside" WHAT
It's supposed to come after the closing bracket so it should look like this:
PHP Code:
if (!defined('IS_ADMIN_FLAG')) { 
    die(
'Illegal Access'); 
  } 

$facebook_add $_POST['facebook_add']; 
The other poster had it like this:

PHP Code:
if (!defined('IS_ADMIN_FLAG')) { 
    die(
'Illegal Access'); 
$facebook_add $_POST['facebook_add'];
  }