Return to "Database & Programming"


View the quick start guide for this product

All articles under PHP

Connecting to Databases with PHP
PHP and MySQL are extremely easy to use together; most tutorials and books written regarding PHP should have a section explaining the connection between the MySQL database and PHP. A simple MySQL connection can be opened in PHP using the following code: $connection = mysql_pconnect("localhost","username","password") or print "Error connecting to the...

Editing the php.ini file
While the php.ini file is not able to be edited directly, you can apply your PHP specific settings to the /etc/php.d/99user.ini file on the server. Once you have applied your changes, you will need to restart the web server (this can be done from within the VDS Manager by logging in to...

PHP Configurations (php.ini)
You will create a 99user.ini file in the etc/php.d directory with changes you need to make for PHP configurations. This will override most specific system settings. If there is already a 99user.ini file there, you can edit that as it has any other changes you may have made to the php...