Hallo ik heb een script maar wanneer ik het open dan worden de 3 links 1000 aantal keren herhaald dit is is het script:
<?
include("include/gegevens.php");
include("include/dingetjes.php");
?>
<html>
<head>
<title>site</title>
<meta http-equiv="Content-Language" content="nl">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="Microsoft Theme" content="none, default">
</head>
</style>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<body>
</tr>
<tr>
<td> - <a href="../links/index.php?p=voegtoe">Site Toevoegen</a></td>
</tr>
<tr>
<td> - <a href="../links/index.php?p=overzicht">Toegevoegde
sites bekijken</a></td>
</tr>
<tr>
<td> - <a href="../links/index.php?p=contact">Contact</a></td>
</tr>
</table></td>
<td align="left" valign="top">
<?
if(!$_GET['p'])
$_GET['p'] = "overzicht";
if(file_exists($_GET['p'].'.php'))
include($_GET['p'].'.php');
else
echo"404 Pagina niet gevonden!!";
?>
</body>
</html>
476 views