Hi all
I'm looking for a script for âbility to display different content ( html or script ) on a speciefied time range on a 24 hour base. from 8 to 10 display 1.html, from 10.01 to 12.00 display 2.html etc.
Is this possibile?
thx for help
Printable View
Hi all
I'm looking for a script for âbility to display different content ( html or script ) on a speciefied time range on a 24 hour base. from 8 to 10 display 1.html, from 10.01 to 12.00 display 2.html etc.
Is this possibile?
thx for help
Something like that.PHP Code:<?php
$h = date('G');
if ($h<2) {$p=1;}
else if ($h<4) {$p=2;}
else if ($h<6) {$p=3;}
...
else if ($h<22) {$p=11;}
else {$p=12;}
include($p.'.html');
?>
This requires PHP installed/enabled on your server and that you serve the page as php, meaning it should have a .php extension.
Hi
thanks for fast reply!
is this possible with javascript too?
can someone change the times for me
Change the times one what to what? Please be more specific when posting.
I need two pages to switch. Page Two i need to come on at 5:00 till
6:00 then page one will take over to the next day.