<!-- Include the tabstrip styles -->
<link rel="stylesheet" type="text/css" media="screen" href="Static_Tabstrip.css">

<?php
    
/**
    * Include the tabstrip code
    */
    
require_once('Static_Tabstrip.php');

    
/**
    * Define the tabs by using a two dimensional array
    */
    
$tabs = array(
                  array(
'id' => 'tab_1', 'name' => 'First tab', 'active' => empty($_GET['tab']), 'link' => 'example.php', 'mouseover' => 'Visit Google!'),
                  array(
'id' => 'tab_2', 'name' => 'Second', 'active' => !empty($_GET['tab']) && $_GET['tab'] === '2', 'link' => 'example.php?tab=2', 'mouseover' => 'Or not...'),
                  array(
'id' => 'tab_3', 'name' => 'Third (disabled)', 'active' => false)
                 );

    
PrintTabStrip($tabs);
?>

<div class="tab_body">
    <?if(empty($_GET['tab'])):?>
        <h1>Some content</h1>

        <p>
            Put the main content in here
        </p>
    <?elseif($_GET['tab'] == 2):?>
        <h1>More content</h1>
        
        <p>
            Put more content in here. Use seperate files for better organisation.
        </p>
    <?endif?>
</div>