Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 4th, 2012  |  syntax: None  |  size: 0.36 KB  |  hits: 7  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Changing my navigation based on date
  2. <?php include (TEMPLATEPATH . '/stub_favorites.php'); ?>
  3.        
  4. if (date('m/d/Y') < date('m/d/Y', strtotime("12/1/2011"))) {
  5.     //Display something
  6. }
  7. else {
  8.     //Display something different
  9. }
  10.        
  11. <?php
  12.    $filename = "month".date("n").".php";
  13.    if (file_exists($filename)) include($filename);
  14.        
  15. month1.php
  16. month2.php
  17. month3.php