MySQL Database Php

  $host="mysql153.secureserver.net";
  $uname="rntsoft";
  $pass="password";
  
  $connection= mysql_connect ($host, $uname, $pass);
  if (! $connection) {
    die ("A connection to the Server could not be established!");
  } else {
    echo "User root logged into to MySQL server ",$host," successfully.";
  }
  ?>