I have a script in php to login to mysql
$db_host="localhost"; $db_user="root"; $db_pass="123"; $dbc=mysql_connect($db_host,$db_user,$db_pass) OR DIE (mysql_error()); $dbs=mysql_select_db($db_name) OR DIE (mysql_error());
this script worked fine, now I am reinstalling the OS now I have windows 7 and iis7 and PHP version 5.3.2 and mysql server 5.1 but now this script does not work and takes registration time.
thanks
source share