addParam($new_db); $GLOBALS['db'] = $new_db; /** * If in an Ajax request, build the output and send it */ if($GLOBALS['is_ajax_request'] == true) { /** * String containing the SQL Query formatted in pretty HTML * @global array $GLOBALS['extra_data'] * @name $extra_data */ $extra_data['sql_query'] = PMA_showMessage(NULL, $sql_query, 'success'); //Construct the html for the new database, so that it can be appended to the list of databases on server_databases.php /** * Build the array to be passed to {@link PMA_generate_common_url} to generate the links * @global array $GLOBALS['db_url_params'] * @name $db_url_params */ $db_url_params['db'] = $new_db; $is_superuser = PMA_isSuperuser(); /** * String that will contain the output HTML * @name $new_db_string */ $new_db_string = ''; /** * Is user allowed to drop the database? */ if ($is_superuser || $cfg['AllowUserDropDatabase']) { $new_db_string .= ''; $new_db_string .= ''; $new_db_string .=''; } /** * Link to the database's page */ $new_db_string .= ''; $new_db_string .= ''; $new_db_string .= $new_db . ''; $new_db_string .= ''; /** * If the user has privileges, let him check privileges for the DB */ if($is_superuser) { $db_url_params['checkprivs'] = $new_db; $new_db_string .= ''; $new_db_string .= ''; $new_db_string .= ($cfg['PropertiesIconic'] ? ' ' . __('Check Privileges') . ' ' : __('Check Privileges')) . ''; $new_db_string .= ''; } $new_db_string .= ''; /** @todo Statistics for newly created DB! */ $extra_data['new_db_string'] = $new_db_string; PMA_ajaxResponse($message, true, $extra_data); } require_once './libraries/header.inc.php'; require_once './' . $cfg['DefaultTabDatabase']; } ?>