<?php
$dbhost = 'localhost';
$database = 'chirp';
$dbusername = 'username';
$dbpasswd = 'password';
// ============= Do not edit below here ======================
$connection = mysql_connect($dbhost,$dbusername,$dbpasswd) or die ('Could not connect to the database server.');
$db = mysql_select_db($database) or die ('Could not connect to the database.');
?>