quote:
right under it, add<% next if (($HOUR < "6")); %>
Thanks Wes. I believe the following line in place of the one you suggested above should do what Chris was looking for?
<% next if (($HOUR < 9) || ($HOUR > 21)); %>
# note: the use of 22 above would include times like 10:30, etc. that aren't wanted?
BTW. The "6" in the previous suggestion should probably NOT be inside quotes (") as it is a numerical value not a string. But Perl is very forgiving and would probably work either way.
PS. This forum software adds a space between | | characters. That space would need to be removed from the code posted here before using it in a template.
JFYI
Dan O.
[This message has been edited by DanO (edited September 30, 2005).]