Gossamer Forum
Home : Products : DBMan SQL : Discussion :

Re: displaying current date on the page

Quote Reply
Re: displaying current date on the page In reply to
You would need to define a variable like $today....

In Reply To:

my $today = &get_date;


Then you would print the variable:

In Reply To:

print qq|Today is: $today|;


So, the complete codes would look like the following:

In Reply To:

my $today = &get_date;
print qq|Today is: $today|;


You would put these codes in the sub html_home routine.

Regards,

Eliot Lee
Subject Author Views Date
Thread displaying current date on the page santana 2829 Nov 22, 2000, 7:52 AM
Thread Re: displaying current date on the page
TIF 2733 Jan 7, 2001, 10:35 PM
Post Re: displaying current date on the page
Stealth 2696 Jan 8, 2001, 9:39 AM