...thank you siberian for your detailed answer

but as I said before, I'm an absolute novice to this mystical world of programming.
I've got this script because someone has told me it's [bold]easy![/bold]
and that "date" thingy is just part of it.
eg
######################################################################
# CONFIGURE THE VARIABLES BELOW #
######################################################################
$recipient = 'competition@solosub.org'; # Your Email Address
$domain = '
# Your domain Address ALL LOWERCASE!!!! ex
$description ='Thank you for contacting YOURDOMAIN.COM'; # Email subject line for admin notification
$description2 ='Thank you for contacting YOURDOMAIN.COM'; # Email subject line for your customer
$mailprog = 'SMTP:mail.solosub.org'; # Path to your Mail Program
$date = `/bin/date`; chop($date); # Path to Date
$autoresponder = 'no'; # yes to use autoresponder or no will skip the autoresponder feature
$database = 'flat'; # Set to flat, mysql, or none
$mysqlname = "your mysql databasename"; # If you don't use mysql, do not edit
$mysqlusername = "your myql username"; # If you don't use mysql, do not edit
$mysqlpassword = "your mysql password"; # If you don't use mysql, do not edit
############ Optional variables #############################################
$Field1 = 'Name:'; #Form field title
$Field2 = 'email'; #Form field title
$Field3 = ''; #Form field title
$Field4 = ''; #Form field title
$Field5 = ''; #Form field title
etc.etc.etc.
So what I gather, it would be OK to leave that "date" bit out and replace it with
use POSIX qw(strftime);
$now_string = strftime "%a %b %e %H:%M:%S %Y", localtime;
as you can see, [bold]no comprehension[/bold] of the whole thing what so ever
thanks again...
wolf