Easy Tutorial
❮ Php Scalar Return Type Func String Chop ❯

PHP mysqli_change_user() Function

PHP MySQLi Reference Manual

Example

Change the user for the specified database connection:

<?php
$con = mysqli_connect("localhost", "my_user", "my_password", "my_db");

// Check connection
if (mysqli_connect_errno($con)) {
    echo "Failed to connect to the database: " . mysqli_connect_error();
}

// Switch database
mysqli_change_user($con, "my_user", "my_password", "my_test");

mysqli_close($con);
?>

Definition and Usage

The mysqli_change_user() function changes the user for the specified database connection and sets the current database.


Syntax

Parameter Description
connection Required. Specifies the MySQL connection to use.
username Required. Specifies the MySQL username.
password Required. Specifies the MySQL password.
dbname Required. Specifies the new database to switch to.

Technical Details

Return Value: Returns TRUE on success, FALSE on failure.
PHP Version: 5+
--- ---
❮ Php Scalar Return Type Func String Chop ❯