Non ho capito bene...
Questa è la pagina index.php
Codice HTML:
<html>
<head>
<title>NfSWARS</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
body,td,tr,table {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
}
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
a:link {
color: #FFFFFF;
}
a:visited {
color: #FFFFFF;
}
a:hover {
color: #0033FF;
}
a {
font-weight: bold;
}
.txtfin {font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
}
-->
</head>
<body style=" background-color: #000000">
<table width="900" border="0" align="center" cellpadding="0" cellspacing="0">
<tr align="center" valign="top">
<td colspan="3"><span class="txtfin">
<? include("top.html"); ?>
</span></td>
</tr>
<tr>
<td width="150" align="center" valign="top"><span class="txtfin">
<? include("sinistra.html"); ?>
</span></td>
<td width="600" align="center" valign="top"><span class="txtfin">
<? include("banner.html"); ?>
<? include("$pagina"); ?>
</span></td>
<td width="150" align="center" valign="top"><span class="txtfin">
<? include("destra.html"); ?>
</span></td>
<table width="900" border="0" align="center" cellpadding="0" cellspacing="0">
<tr align="center" valign="top">
<td colspan="3"><span class="txtfin">
<? include("sub.html"); ?>
</span></td>
</tr>
</table>
</body>
</html>
Vedi ci sono i collegamenti a delle pagine html(sinistra,destra,sub,ecc...)
Questo invece è parte della pagina sinistra.html
Codice HTML:
<table style="text-align: left; background-color: rgb(204, 102, 0); width: 150px; height: 563px;" border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td style="vertical-align: top; text-align: left; width: 152px; background-color: rgb(0, 0, 0); height: 1500px;">
<table style="text-align: left; width: 150px; height: 62px;" border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td style="vertical-align: top; text-align: left; background-color: rgb(51, 153, 153); height: 4px;"><small><span style="font-weight: bold; color: rgb(255, 255, 255);">NfSWARS</span></small><br>
</td>
</tr>
<tr style="color: rgb(255, 255, 255);">
<td style="vertical-align: top; text-align: left; height: 68px;">
<small>
<a href="index.php?pagina=home.php">HOME</a>
<br>
<a href="index.php?pagina=Cerca/cerca.php"> CERCA</a>
<br>
<a href="index.php?pagina=News/Archivio/archivionews.php"> ARCHIVIO NEWS</a>
<br>
<a href="index.php?pagina=News/news.html"> NEWS</a>
In questa parte ci sono 4 diversi tipi di link:HOME,CERCA,ARCHIVIO NEWS e NEWS.
Come puoi vedere la terzultima è collegata alla pagina cerca.php all'interno della cartella Cerca,la penultima alla pagina archivionews.php,all'interno di quelle cartelle,l'ultima,invece,a quella news.html nella cartella News.
Come dovrebbero essere questi 4 tipi di link usando il modo più sicuro?
Nella pagina index.php e sinistra.html.