Dominique ANOKRE wrote:
on line 66 there is :

$date=$_POST["date"];

Thanks

$_POST['date'] isn't set.


if ( isset ( $_POST['date'] ) ) {
        $date = $_POST['date'];
}

--
By-Tor.com
It's all about the Rush
http://www.by-tor.com

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to