Simple Php script to load different pages for different days
e.g my sales page contains a countdown timer that expires on a specified date, and after that date, a new page should be pulled up.
I did the script below:
date_default_timezone_set("Africa/Lagos");
$date=date("d F Y");
if ($date <= '31 December 2011')
{
include 'pagedecember.html';
}
else
include 'pagejanuary.html';
Please any suggestions on making this work?
Thanks.
I will build any kind of software, bots, web applications, desktop applications, mobile applications - you will handle marketing and sales.