PHP -> Funkcie -> MySQL funkcie PHP -> mysql_db_name
Syntax
string mysql_db_name ( resource $result, int $row [, mixed $field] )
Popis
Príkaz jazyka PHP
Vrátí seznam všech databází
První parametr funkce mysql_db_name() obsahuje identifikátor volání mysql_list_dbs.
- result - The result pointer from a call to mysql_list_dbs().
- row - The index into the result set.
- field - The field name.
Nastane-li chyba vrací FALSE. Použitím mysql_errno a mysql_error zjistíte chybovou hlášku.
Príklady
If you just need the current database name, you can use MySQL's SELECT DATABASE() command: