mysql_select_db
mysql_select_db
Select a MySQL database
Waarschuwing: >
mysqli_select_db``PDO::__construct
bool **mysql_select_db** string $database_name resource $link_identifier
Sets the current active database on the server that's associated with the
specified link identifier. Every subsequent call to
will be made on the active database.
mysql_query
database_nameThe name of the database that is to be selected.
return.success
Voorbeeld: example
<?php
$link = mysql_connect('localhost', 'mysql_user', 'mysql_password');
if (!$link) {
die('Not connected : ' . mysql_error());
}
// make foo the current db
$db_selected = mysql_select_db('foo', $link);
if (!$db_selected) {
die ('Can\'t use foo : ' . mysql_error());
}
?>
Opmerking: > info.deprecated.alias
mysql_selectdb
mysql_connect``mysql_pconnect``mysql_query