Hi,
Is there a script which will replace an include with another include at a given time?
Thanks in advance.
riffola
Riffola, you could use the date() function to look at the time and just use an if statement... i.e.
if(date("a")=="am") { include("good_morning.inc"); } else { include("good_day.inc"); }
good_luck, Eric Mueller http://www.themepark.com/php/
thanks for the information, and sorry for the delay in replying.