<?php

    /***********************************************************************
     * constants.php
     *
     * Computer Science 50
     * CS75 Buses!
     *
     * Global constants.
     **********************************************************************/


    // your database's name (i.e., username_pset7)
    define("DB_NAME", "chandras_inject");

    // your database's username
    define("DB_USER", "chandras_inject");

    // your database's password
    define("DB_PASS", "injection");

    // database server - localhost in this case
    define("DB_SERVER", "localhost");

?>
