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().
1 |
mysql_connect('localhost', 'mysql_database_user', 'mysql_db_password') or die("not connected to db"); |