Hello everyone!
My webpage is running this error..
Fatal error: Cannot redeclare register_new_user() (previously declared
So I added "if(!function_exists('function_name')){" to the line affected
//////REGISTRATION EMAIL END////////
}
return array($user_id,$user_pass);
if(!function_exists('function_name'))
{
}
$action = isset($REQUEST['action']) ? $REQUEST['action'] : 'login';
$errors = new WP_Error();
if ( isset($_GET['key']) )
$action = 'resetpass';
// validate action so as to default to the login screen
and now am getting this error: syntax error, unexpected T_STRING which relates to the last line on the page.
$middle_content_file_fullpath = TEMPLATEPATH . "/library/includes/$file_name";
}
include_once(TEMPLATEPATH.'/site_layout_structure.php');
php get_footer();?>
Please help and thank you!