home *** CD-ROM | disk | FTP | other *** search
- <?php
- /* $Id: db_create.php,v 1.14 2001/11/23 01:03:19 loic1 Exp $ */
-
-
- /**
- * Gets some core libraries
- */
- require('./libraries/grab_globals.lib.php');
- $js_to_run = 'functions.js';
- require('./header.inc.php');
-
-
- /**
- * Defines the url to return to in case of error in a sql statement
- */
- $err_url = 'main.php'
- . '?lang=' . $lang
- . '&server=' . $server;
-
-
- /**
- * Ensures the db name is valid
- */
- if (get_magic_quotes_gpc()) {
- $db = stripslashes($db);
- }
- if (PMA_MYSQL_INT_VERSION < 32306) {
- PMA_checkReservedWords($db, $err_url);
- }
-
-
- /**
- * Executes the db creation sql query
- */
- $local_query = 'CREATE DATABASE ' . PMA_backquote($db);
- $result = mysql_query('CREATE DATABASE ' . PMA_backquote($db)) or PMA_mysqlDie('', $local_query, FALSE, $err_url);
-
-
- /**
- * Displays the result and moves back to the calling page
- */
- $message = $strDatabase . ' ' . htmlspecialchars($db) . ' ' . $strHasBeenCreated;
- require('./db_details.php');
-
- ?>
-