WordPress credentials not matched

If your database connection is wrong you will get an error says Error establishing database connection so if you seeing login form your connection is fine and wp-config has nothing to do in your issue. If you don’t remeber what’s your credentials are, go to your database manager like phpMyAdmin and look for _users table … Read more

HELP $q=mysql_query($sel) or die(mysql_error()) HELP

This is more like a server problem, it seems like your server is very old. WordPress requirements change over time to stay up to date and provide a fast and stable experience and also more features. As of this post, the WordPress server (minimum) requirements are the following: PHP 5.2.4+ MySQL 5.0+ Recommended is: PHP … Read more

get_option() does unserialize and don’t remove \

The get_option function is necessary for you using maybe_unserialize. update_option() function maybe_serialize passed. // store data time use maybe_unserialize. $data = maybe_serialize( $data ); // get/display time user maybe_unserialize $data = maybe_unserialize( $data ); Please check it with above example code