#
#
#end
The Silicon Guide To
Using Server Side Includes
The Config Command
To configure the how the date commands display their information
(DATE_GMT, DATE_LOCAL and LAST_MODIFIED), use the CONFIG command. The syntax for
this command is:
<!--#config timefmt="FORMATTING_GOES_HERE" -->,
where FORMATTING_GOES_HERE is any combination of the following formatting
codes:
Formatting Code |
Description |
Real-time Example |
%a |
Short weekday name |
Fri |
%A |
Full weekday name |
Friday |
%b |
Short month name |
Jan |
%B |
Full month name |
January |
%c |
Proper way of formatting the time in the time zone where the server is
located. |
Fri Jan 10 01:06:44 2025 |
%C |
Default time format |
20 |
%d |
Day of the month |
10 |
%D |
Current date in the standard format of mm/dd/yy |
01/10/25 |
%e |
Day of the month, without any zeroes. |
10 |
%h |
Same as %b |
Jan |
%H |
Current hour in 24 hour format |
01 |
%I |
Current hour in 12 hour format |
01 |
%j |
Day of year |
010 |
%m |
Month of year |
01 |
%M |
Current minute |
06 |
%n |
Break line |
|
%p |
Indicates whether it is AM or PM |
AM |
%r |
Time in the format of 2:13:35 PM |
01:06:44 AM |
%R |
Time as 16:34 |
01:06 |
%S |
Current second |
44 |
%t |
Tabulation |
|
%T |
Time in the format of 14:23:54 |
01:06:44 |
%U |
Number of the current week |
01 |
%w |
Current week day |
5 |
%W |
Same as %U |
01 |
%x |
Date format of Local Country |
01/10/25 |
%X |
Time format of Local Country |
01:06:44 |
%y |
Year in two digit format |
25 |
%Y |
Year in four digit format |
2025 |
%Z |
The name of the Local Time Zone |
UTC |
For example if I wanted to display the current time in the format Month dd, YYYY; I
would insert the following code into my HTML document:
<!--#config timefmt="%B %d, %Y"-->
<!--#echo var="DATE_LOCAL"-->
which would yield the following output:
January 10, 2025
Next Page:
Including files
Skip Ahead:
Executing CGI Scripts
SSI Hosting and Conclusion