require_once($_SERVER['DOCUMENT_ROOT'].'/pointer_config.php');
prep_html('blank.html', 'unix time tool');
$html_top = HTML_TOP;
$html_top = str_replace('RESOURCES', 'RESOURCES', $html_top);
echo $html_top;
if ($year && $month && $day && $hour && $minute) {
$time_unix = mktime($hour,$minute,0,$month,$day,$year);
echo 'Unix timestamp for '.date('F jS, Y, G:i', $time_unix).':
';
}
?>