Example MySql Connection Script (PHP)
After setting up the database as described in other knowledgebase articles you will need to create a connection script to your database. Below is an example connection script in PHP to connect to a MySql database. <?php //assuming your login ID is ‘webs’ //DB access info define (‘DB_USER’, ‘webs_username’); define (‘DB_PASSWORD’, ‘password’); define (‘DB_HOST’, ‘localhost’); [...]

