Use follow codes for test your php,php_mysql is work well.
use your ip replace localhost,your mysql port replace 3306 and
username,password to replace mysql_user, mysql_password.
<?php
error_reporting(2047);
ini_set("display_error","On");
if(mysql_connect('localhost:3306', 'mysql_user', 'mysql_password')){
    echo "Ok";
}else{
    echo "Failed";
}
?>

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to