view index.php @ 0:7ef9a3922b75

Initial import
author xixor <xixor@xixor.net>
date Mon, 09 Jan 2012 23:14:37 -0500
parents
children 5f25a5f57f63
line wrap: on
line source

<html>
<head>
<title>Is it OctConf?</title>
</head>
<body style="text-align: center; padding-top: 200px;">


  <font
    style="font-weight: bold; 
          font-size: 120pt; 
          font-family: Arial, sans-serif; 
          text-decoration: none; 
          color: black;" >
  
<?php $today = getdate(); 

  if($today['mon'] == 06 && $today['mday'] == 04) 
  { 
     echo('YES'); 
  } else {
	echo('NO');
  }
?>

</font>

<br><br><br>

<?php 
$day = 4; 
$month = 06; 
$year = 2012; 
$days = (int)((mktime (0,0,0,$month,$day,$year) - time())/86400); 
echo "$days days until OctConf 2012!!"; 
?>


<br><br>
<br><br><br><br><br>
<br><br><br><br><br>
	
<a href="http://www.octave.org/wiki/index.php?title=OctConf_2012"><img src ="octacon.png" border="0"></a>

</body>
</html>