|  HTML interesse |  | Wat is hier fout aan? 
 index.php
 
 
    
    
        
            
                
<?php
$nav == $_GET['nav'];
if($nav == '')
{
include('start.php'); 
}
elseif($nav == '1')
{
include('home.php'); 
}
?>
 <?php$nav == $_GET['nav']; if($nav == ''){include('start.php'); } elseif($nav == '1'){include('home.php'); }?>
   
 start.php
 
 
    
    
        
            
                
<div id="start" style="position: absolute; visibility: show; top:150; left:350;">
<a href="index.php?nav=1"><img src="images/start.gif" alt="" border="0"></a>
</div>
 <div id="start" style="position: absolute; visibility: show; top:150; left:350;"><a href="index.php?nav=1"><img src="images/start.gif" alt="" border="0"></a></div>
   |