Selecting a Database : Choose Database : MySQL Database PHP Source Code


PHP Source Code » MySQL Database » Choose Database »

 

Selecting a Database




<?php
  $host="mysql153.secureserver.net";
  $uname="navioo";
  $pass="password";
  
  $connection= mysql_connect ($host, $uname, $pass);
  
  if (!$connection) {
     die ("A connection to the server could not be established!")
  }
  
  $result=mysql_select_db ("navioo");
  
  if (! $result) {
     die ("database could not be selected");
  }
     
  echo "Database navioo is ready for use.";
?>
           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo MySQL Database
» Choose Database