<?
$db_host="localhost";
$db_name="mip_mip"; //the name of the database.
$db_username="mip_mip"; //mysql username to access the database with.
$db_password="mip_mip"; //mysql password to access the database with.
//$db_name="";
//$db_username="";
//$db_password="";
$report_access=array(1,2); // reports
$add_access=array(1);// administrator only
$delete_access=array(1,2); // all deletions
$approve_access=array(1,2);
$user_report_access=array(1);// administrator only
foreach($_POST as $key => $val) {
$$key=$val;
}
foreach($_GET as $key => $val) {
$$key=$val;
}
foreach($_REQUEST as $key => $val) {
$$key=$val;
}
foreach($_SESSION as $key => $val) {
$$key=$val;
}
?>