Well,It happens when Server upgrades with PHP 5.3 and compatibility issue
Problem is solved by adding this function and including a brace in the wp-settings.php 18th line !!
if(version_compare(PHP_VERSION, '5.3.0', '<'))
{
set_magic_quotes_runtime(0); //18th line
}