![]() |
|
|
+ Search |
![]()
|
Sep 21st, 2005 02:48
Jad madi, John Marc, T M,
you would use the date function to get the month
$mon=strtolower(date('M'));
Then include the file you want like this:
include $mon.'.php';
This one should be more dynamic
<?php
$month = strtolower(date('F'));
include("$month".".php");
?>