Scusate...
ma se io ho questo codice:
<body bgcolor="#6699FF">
<div align="center">
<center>
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="80%" id="AutoNumber1">
<tr>
<td width="100%">
<?php
{
include("pages/pezzo1.htm");
}
?>
</td>
</tr>
<tr>
<td width="100%">
</td>
</tr>
<tr>
<td width="100%"> </td>
</tr>
<tr>
<td width="100%">
<?php
if ( $_GET['page1'] == "")
{
include("pages/pezzo2.htm");
}
else
{
include("pages/" . $_GET['page1'] . ".htm");
}
?>
</td>
</tr>
<tr>
<td width="100%"> </td>
</tr>
<tr>
<td width="100%">
<?php
if ( $_GET['page2'] == "")
{
include("pages/pezzo2.htm");
}
else
{
include("pages/" . $_GET['page2'] . ".htm");
}
?>
</td>
</tr>
<tr>
<td width="100%"> </td>
</tr>
<tr>
<td width="100%"> </td>
</tr>
</table>
</center>
</div>
</body>
Come faccio a far si che una volta cambiato il contenuto del conten 2 perche la sintassi if ( $_GET['page2'] == "") non è NULL, non cambi nuovamente se passo altri parametri tramite link???