PHP Tutorial : Connecting to MySQL database via PHP
Apr 30, 2009 Php & MySQL
In this tutorial I will speak first time about php programming language and MySQL database engine togheter. I will show and explain how simple is to connect to a mysql server via php using a simple functio called mysql_connect().
mysql_connect(‘localhost’, ‘mysql_database_user’, ‘mysql_db_password’) or die(“not connected to db”);

