|
1.
PHP4 MySQL; Basic Connectiviry.
PHP provides the
mysql_connect() function to create a connection to a
MySQL database server with three string arguments.
$connection = mysql_connect("www.ekoo.com","username","password");
Remember the hostname,
username, password to connect to the database server.
2.
MySQL Front Connectiviry.

Input suitable hostname,
username and passoword to connect the database server.
|