just thought i post this error here, this is the errror i was getting:


Fatal error: Function name must be a string in /home/web/www.includes/class.php on line 180


this is what i had on line 180

UserEmail = '".$user('email')."',


how i resolved this problem:

i changed it to:

UserEmail = '".$user['email']."',


as you can see i basically changed the parenthesis () to brakets []

hope that helps