Search This Blog

Tuesday, 20 January 2015

Connect Mysql Database with PHP.

We can connect Mysql Database with PHP using Procedural and Object oriented style like below




$con= mysql_connect("localhost", "username", "password");


mysql_select_db("database",$con);

No comments:

Post a Comment