|
|
|
|
|
|
|
|
|
#2 |
|
a.k.a. Sparky
Join Date: Sep 2004
Location: West Palm Beach, FL, USA
Posts: 2,396
|
Those Environment variables won't always be available in CGI, so, you really cannot depend on them. SSI parses them using the Apache environment which does set those variables.
You could do something like: Code:
print "Content-type: text/html\n\n"; print `date`; print `date -u`; Code:
print `date "+%b %d, %Y"`; There are also calendar libraries available or you could write something using localtime/gmtime Code:
($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) =
localtime(time);
printf "%d/%d/%d",$mon+1,$mday,$year+1900;
Remember that $mon returns 0-11 for Jan-Dec, and the year needs 1900 added to it.
__________________
SnapReplay.com a different way to share photos - iPhone & Android |
|
|
|
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|