in PHP, you can get the user's IP address in the variable $_SERVER['REMOTE_ADDR'];
If you want a nicely formatted date, use
date("l dS of F Y h:i:s A");
so, you could do
$submit_date = date("l dS of F Y h:i:s A");
$submit_ip = $_SERVER['REMOTE_ADDR']
========================================
you can get information about the date function here:
http://www.php.net/date
and information about the $_SERVER variable here:
http://www.php.net/reserved.variables
Jim Keller
http://jim.centerfuse.net/projects/