RSS Feed
Knowledgebase : PHP & MySQL
     
To create a mysql database, log into your control panel and select the 'MySQL Databases' link. Enter in the name of the database you want to create and submit it. Once you have created a database you must create a database user and then grant tha...
Troubleshooting "Cannot connect to the database" errors... Here are a few initial things (common mistakes) to take a look at: - Make sure that after you created your database and database user that you didn't forget to ADD the database user to the d...
How to back up a mySQL database using phpMyAdmin: You can backup your database using the PHPMyAdmin feature in your control panel. In PHPMyAdmin, select the database you want to backup and select "Export" tab on the right screen. Choose the tabl...
MYSQL_CONNECT EXTENSION WAS DEPRECATED IN PHP 5.5.0, AND IT WAS REMOVED IN PHP 7.0.0. MySQLi or PDO_MySQL extension should be used to connect mysql database from php script. mysqli_connect() PDO::__construct() https://www.php.net/manual/en/book.my...