- Code: Select all
<?php
$today = date("l, j, y");
$start = date("monday, 20, 03");
echo $today;
if($today == $start){
echo "<Br>YaY the day has come!";
}else{
echo "<Br>You have to wait till the 20th to access this code";
}
?>
can anyone tell me how do i go by this.. thanx


