bool mysql_select_db ( string $database_name [, resource $link_identifier = NULL ] )
Select a MySQL database
Sets the current active database on the server that's associated with the specified link identifier. Every subsequent call to mysql_query() will be made on the active database.
<?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());
}
?>
พัฒนาระบบสมัครสมาชิก PHP + MySQL (Path 3)
0 Comment:
Post a Comment