To connect to your MySQL database using PHP you will need a connection string. This is a PHP MySQL Connection Example (PHP is available on Linux hosting accounts and Windows hosting accounts using IIS7 only):<?php
//Sample Database Connection Syntax for PHP and MySQL.
//Connect To Database
$hostname=”your_mysqlserver.secureserver.net”;
$username=”your_dbusername”;
$password=”your_dbpassword”;
$dbname=”your_dbusername”;
$usertable=”your_tablename”;
$yourfield = “your_field”;
mysql_connect($hostname,$username, $password) or die (”<html><script language=’JavaScript’>alert(’Unable to connect to database! [...]