PHP MySQL Database Connection
PHP 5 and later can work with a MySQL database using: MySQLi extension (the “i” stands for improved) PDO (PHP Data Objects) Earlier versions of PHP used the MySQL extension. However, this extension was deprecated in 2012. Open a Connection to MySQL Example: <?php $servername = “localhost”; $username = “username”; $password = “password”; // … Read more