Please select the database for the query:
connect_error) { die("Could not connect: " . $link->connect_error); } // Získanie zoznamu databáz $db_table = $link->query("SHOW DATABASES"); if (!$db_table) { die('Could not list databases: ' . $link->error); } // Zobrazenie možností databáz while ($row = $db_table->fetch_object()) { echo "
" . $row->Database . "
"; } // Zatvorenie spojenia $link->close(); ?>
Please input the SQL query to be executed: