View Single Post
02-19-2008, 02:04 PM
#2
Gaz is offline Gaz
Gaz's Avatar
Status: Request a custom title
Join date: Apr 2007
Location: UK
Expertise: Code & Programming
Software: Coda, TextMate, Sublime 2
 
Posts: 2,097
iTrader: 26 / 100%
 

Gaz will become famous soon enough Gaz will become famous soon enough

Send a message via Skype™ to Gaz

  Old

Code:
<?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");
		}
		
?>
You forgot the parentheses ({})

Gareth.