Sorry, there is no way to tell from your description what the problem could be. I'd suggest looking at the PHP page, which was designed for PHP 4. See what the output of this section is:
Code:
$date = strtotime($_GET["txtBirthday"]);
if ($date < 0) {
$message = "This is not a valid date.";
} else {
$valid = "true";
$message = "";
}
Nicholas C. Zakas
Author, Professional JavaScript for Web Developers (ISBN 0764579088)
http://www.nczonline.net/