<?php
  mysql_connect("localhost", "root","") or die("Connection Failed");// Connect to localhost with username root and password.
	mysql_select_db("tutorial") or die("DB Not Found"); // Select mysql Database tutorial
?>