Tools, FAQ, Tutorials:
Connecting to a MySQL Server in PHP
How To Connect to MySQL from a PHP Script in PHP?
✍: FYIcenter.com
If you want access the MySQL server, you must create a connection object first by calling the mysql_connect() function in the following format:
$con = mysql_connect($server, $username, $password);
If you are connecting to a local MySQL server, you don't need to specify username and password. If you are connecting to a MySQL server offered by your Web hosting company, they will provide you the server name, username, and password.
The following script shows you how to connect to a local MySQL server, obtained server information, and closed the connection:
<?php
$con = mysql_connect('localhost');
print(mysql_get_server_info($con)."\n");
print(mysql_get_host_info($con)."\n");
mysql_close($con);
?>
If you run this script, you will get something like this:
5.0.2-alpha localhost via TCP/IP
⇐ Information Needed for MySQL Connection in PHP
2016-10-20, ∼3259🔥, 0💬
Popular Posts:
How to use "xml-to-json" Azure API Policy Statement? The "xml-to-json" Policy Statement allows you t...
How to Build my "sleep" Docker image from the Alpine image? I want the container to sleep for 10 hou...
How to run PowerShell Commands in Dockerfile to change Windows Docker images? When building a new Wi...
How to use the "send-one-way-request" Policy statement to call an extra web service for an Azure API...
How to start Docker Daemon, "dockerd", on CentOS systems? If you have installed Docker on your CentO...