ob_start();
error_reporting(E_ALL);
session_start();
if (!isset($_SESSION['user']['name'])) {
echo "You must login to use the system";
$_SESSION['user']['page'] = "parts_inventory/search.php";
header("Location: ../Login.php");
}
$developers = array(51);
$developer = in_array($_SESSION['user']['ID'], $developers);
set_time_limit(30);
?>
Search for part
include_once($_SERVER['DOCUMENT_ROOT']."/php/db_config.php");
include_once($_SERVER['DOCUMENT_ROOT']."/JS/basic_header.php"); //chillercity logo and login-logout menu bar
?>