View Single Post
02-19-2008, 01:27 PM
#1
G-Sun is offline G-Sun
Status: Member
Join date: Feb 2008
Location: Norway
Expertise:
Software:
 
Posts: 101
iTrader: 0 / 0%
 

G-Sun is on a distinguished road

  Old  Date, ifelse, include

Hi!

I'm rather new to PHP and are using some basic functions.
However I can't seem to get this date; ifelse; include -statment to work.


<?php
$d=date("w");
if ($d=="1" OR "4")
include("Div filer/Visdom/Visdom02.html");
elseif ($d=="6")
include("Div filer/Visdom/Visdom03.html");
else
include("Div filer/Visdom/Visdom01.html");
?>
What I want to it to do is to include a different file depending on the day of week.

What is wrong with my code?
Thanks!