View Single Post
Old 03-05-2008, 09:48   #4 (permalink)
hollywooood
I know nothing!
 
hollywooood's Avatar
 
Join Date: Jan 2008
Location: Bali, Indonesia
Posts: 128
My Apologies..

PHP Code:
<?php session_start();
strpos($HTTP_SERVER_VARS['HTTP_USER_AGENT'],"IE")!="" 
|| strpos($_SERVER['HTTP_USER_AGENT'],"IE")!="" ?
$css="<link href=\"iestyle.css\" rel=\"stylesheet\" type=\"text/css\" />" :
$css="<link href=\"style.css\" rel=\"stylesheet\" type=\"text/css\" />";
switch (
$page)
    {
    
    case 
about:
    
$title="MPower | About Us";
    
$includes="page/about.php";
    break;
    case 
contact:
    
$title="MPower | Contact Us";
    
$includes="page/contact.php";
    break;
    
    case 
products:
    
$title="MPower | Products";
    
$includes="page/products.php";
    break;
    case 
poetry:
    
$title="MPower | Poetry";
    
$includes="page/poetry.php";
    break;
    case 
events:
    
$title="MPower | Events";
    
$includes="page/events.php";
    break;
    case 
links:
    
$title="MPower | Links";
    
$includes="page/links.php";
    break;
    default:
    
$title="MPower | Home";
    
$includes="page/home.php";
    
$page="home";
    }
?>

My menu is as follows.....


HTML Code:
<div id="menu"> <ul> <li><a id="home" href="index.php?page=home"></a></li> <li><img src="http://www.designerstalk.com/forums/images/space1.png" /></li> <li><a id="about" href="index.php?page=about"></a></li> <li><img src="http://www.designerstalk.com/forums/images/space2.png" /></li> <li><a id="contact" href="index.php?page=contact"></a></li> <li><img src="http://www.designerstalk.com/forums/images/space3.png" /></li> <li><a id="products" href="index.php?page=products"></a></li> <li><img src="http://www.designerstalk.com/forums/images/space4.png" /></li> <li><a id="poetry" href="index.php?page=poetry"></a></li> <li><img src="http://www.designerstalk.com/forums/images/space5.png"/></li> <li><a id="events" href="index.php?page=events"></a></li> <li><img src="http://www.designerstalk.com/forums/images/space6.png"/></li> <li><a id="links" href="index.php?page=links"></a></li> </ul> </div>

Thanks for the help....

Last edited by hollywooood : 06-05-2008 at 03:21.
  Reply With Quote