home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 1999 April / APC443.iso / features / grpware / coldfus / coldfusi.exe / data1.cab / Documentation / snippets / hour.cfm < prev    next >
Encoding:
Text File  |  1998-10-08  |  393 b   |  26 lines

  1. <!--- This example shows the use of Hour, Minute, and Second --->
  2.  
  3. <HTML>
  4.  
  5. <HEAD>
  6. <TITLE>
  7. Hour Example
  8. </TITLE>
  9. </HEAD>
  10.  
  11. <BODY bgcolor=silver>
  12.  
  13. <H3>Hour Example</H3>
  14.  
  15. <CFOUTPUT>
  16. The time is currently #TimeFormat("#Now()#")#.
  17. We are in hour #Hour("#Now()#")#, Minute #Minute("#Now()#")#
  18. and Second #Second("#Now()#")# of the day.
  19. </CFOUTPUT>
  20.  
  21.  
  22.  
  23. </BODY>
  24.  
  25. </HTML>       
  26.