PHP/MySQL Database/Database Create

Материал из Web эксперт
Перейти к: навигация, поиск

Creating a Database in MySQL

   <source lang="html4strict">

<?php

 $host="mysql153.secureserver.net";
 $uname="wbex";
 $pass="password";
 
 $connection= mysql_connect ($host, $uname, $pass);
 if (!$connection) {
   die ("A connection to the server could not be established!");
 }
 $result=mysql_create_db ("mydatabase");
 if (!$result) {
   die ("database could not be created!");
 }
 echo "Database megabase was created successfully.";

?>

      </source>