eh? jag hittade inget i phpmyadmin där man kunde ta bort databaser så jag valde drop, och dropade databaserna jag inte vill ha mer och dom gick bort...och nu i startsidan så kan jag bara välja språk, inget mer?
så jag gick direkt till localhost/phpMyAdmin/db_create.php
och fick det här meddelandet.
Fel
SQL-fråga :
CREATE DATABASE
MySQL sa:
You have an error in your SQL syntax near '' at line 1
/**
* 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');