MySQL Connect
0 4494
To connect with MySQL database, we have to connect it (database) with the server. For this we need Server Name, User Name and Password.
<?php $servername="localhost"; $username="user"; $password="pass"; //Now create connection $connect=mysql_connect($servername,$username,$password) or die ("Connection failed"); ?>

Share:
Comments
Waiting for your comments