Collections:
Connect to MySQL Server with User Account in MySQL
How To Connect to MySQL Server with User Accounts in MySQL?
✍: FYIcenter.com
If you want to connect a MySQL server with user account name and password, you need to call mysql_connect() with more parameters like this:
$con = mysql_connect($server, $username, $password);
If your MySQL server is provided by your Internet service company, you need to ask them what is the server hostname, port number, user account name and password. The following tutorial exercise shows you how to connect to a MySQL server, on host "localhost", at port "8888", with user account "dev", and with password "iyf":
<?php
$con = mysql_connect('localhost:8888', 'dev', 'iyf');
if (!$con) {
print("There is a problem with MySQL connection.\n");
} else {
print("The MySQL connection object is ready.\n");
mysql_close($con);
}
?>
If all parameters are correct, you should get a good connection object as shown in the following output:
The MySQL connection object is ready.
⇒ Accessing MySQL Server through Firewalls in MySQL
⇐ Connect to MySQL Server with Port Number in MySQL
2017-11-25, 2495🔥, 0💬
Popular Posts:
What Are the Underflow and Overflow Behaviors on FLOAT Literals in SQL Server Transact-SQL? If you e...
What is test testing area for? The testing area is provided to allow visitors to post testing commen...
Where to find answers to frequently asked questions on INSERT, UPDATE and DELETE Statements in MySQL...
How To Present a Past Time in Hours, Minutes and Seconds in MySQL? If you want show an article was p...
How To Install PHP on Windows in MySQL? The best way to download and install PHP on Windows systems ...