Hi,

Just found this forum and it looks like a wealth of info!

I'm not a coder and have a problem with the following brief bit of code (reportedly on line 22):

Code:
<?php
$d = $_GET["d"];
$m = $_GET["m"];
$y = $_GET["y"];

$d = (int) $d;
$m = (int) $m;
$y = (int) $y;

$curr = time();

$olddt = mktime(0,0,0,$m,$d,$y);
...