når jeg prøve at lave det så gider min hjemmeside ikke blive vist.. hvad kan jeg gøre galt.. da
jeg skriver min index.php sådan her,,;
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="
http://www.w3.org/1999/xhtml" xml:lang="da" lang="da">
<head>
<title>Klanroga.dk</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" type="text/css" href="
http://www.klanroga.dk/style.css"/><script type="text/javascript" src="jquery-1.5.2.min.js"></script>
<script type="text/javascript" src="jquery-ui.custom.js"></script>
<script type="text/javascript">
$(function(){
$( "#accordion" ).accordion();
});
</head>
<div class="header">
<b><a href="index.php" target="_self">KlanRoGa.dk</a></b>
</div>
<div class="menusider">
<a href="index.php" target="_self" <?php if($_GET['s']=="") { ?> class="current"<?php } ?>>Forside</a> -
<a href="test.php" target="_self" <?php if($_GET['s']=="") { ?> class="current"<?php } ?>>Gallery</a> -
<a href="index.php" target="_self" <?php if($_GET['s']=="") { ?> class="current"<?php } ?>>Website</a> -
<a href="index.php" target="_self" <?php if($_GET['s']=="") { ?> class="current"<?php } ?>>Links</a> -
<a href="index.php" target="_self" <?php if($_GET['s']=="") { ?> class="current"<?php } ?>>Info</a>
</div>
<a href="
http://www.facebook.com/Jesperpb" target="_blank"><img style="float:right" src="facebook.png" width="60" height="55" longdesc="
http://www.facebook.com/Jesperpb" /></a>
<a href="
https://twitter.com/#!/jesperPetersenB" target="_blank"><img style="float:right" src="1270640900_icontexto-inside-twitter.png" alt="" width="60" height="55" longdesc="
http://www.facebook.com/Jesperpb" /></a>
<br>
<div class="center">
<?php
$url = $_GET['s'];
switch ($url) {
case "": include("hjem.php");
break;
case "info": include("info.php");
break;
default: echo "Siden findes ikke";
}
?>
</div>
</body>
</html>