View Single Post
Old 07-20-2008, 03:46 PM  
xentech
Confirmed User
 
xentech's Avatar
 
Join Date: Jan 2006
Location: England
Posts: 1,405
Code:
<?php
switch ($id)
{
case 1:
include("header.php");
  break;
case 2:
include("header.php");
  break;
case 3:
include("header.php");
  break;

default:
  echo "No number between 1 and 3";
}

?>
xentech is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote