41 lines
861 B
PHP
Executable File
41 lines
861 B
PHP
Executable File
<?php
|
|
/* $Id$ */
|
|
// vim: expandtab sw=4 ts=4 sts=4:
|
|
|
|
|
|
/**
|
|
* Gets some core libraries
|
|
*/
|
|
require('./libraries/grab_globals.lib.php3');
|
|
$js_to_run = 'functions.js';
|
|
require('./header.inc.php3');
|
|
|
|
|
|
/**
|
|
* Defines the url to return to in case of error in a sql statement
|
|
*/
|
|
$err_url = 'main.php3?' . PMA_generate_common_url();
|
|
|
|
/**
|
|
* Ensures the db name is valid
|
|
*/
|
|
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 = PMA_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.php3');
|
|
|
|
?>
|