PHP MySQL connection using PDO![]() It is always a good practice to keep the database connection details at a common place and call it from different pages where it is required. This helps in maintaining the code when the database connection details changes or the script is shifted to different server with different connection details. If we are not using a common file then to change the database details we need not change the connection string in all the files. By keeping all details at one place if we update the details then all the files will use the same ( updated ) details. We can keep the connection details in config.php file or any other file name you find suitable. All the codes inside this file are to be within the PHP code block, so it will not be exposed if it is opened directly in browser. Let us start with the basic connection code in PDO for PHP & MySQL ( PHP MySQL Connection code for old system is here ) The code below is kept inside config.php file and can be connected from any other file in the script.
Here the variables $host_name is the name of the MySQL server host or ip address ( 'localhost' or '127.0.0.1')To get the database connection we have to keep these two lines inside any file and start using the database
Google Cloud & MySQL connection using PDO
Details of MySQL database setupMore on Managing MySQL database at Google cloud
This article is written by plus2net.com team.
![]() |