|
$curr_date = date('Y-m-d H:i:s', $_SERVER['REQUEST_TIME']); echo "Current Date-Time(YYYY-MM-DD Hr:Min:Sec): ".$curr_date?>
|
|
 |
Recruitment of EET2021 in the discipline of IT & Mining through GATE 2021
$curr_date = strtotime(date("Y-m-d H:i:s"));
$begin_date = strtotime("2022-02-22 00:00:00");
//$end_date = strtotime("2018-02-22 00:00:00"); //extend by 1 week
$end_date = strtotime("2022-04-01 00:00:00");
//echo $begin_date."<=".$curr_date."<".$end_date;
if($curr_date >= $begin_date && $curr_date < $end_date)
{
?>
|
}
else
{
if($curr_date < $begin_date)
{
?>
Registrations for ET-2021 will open on 10-Jan-21.
|
}
else
{
?>
Registrations closed now
}
}
?>
|
|
|
|
|
|
|
|
|