es decir, tu selecciona un año en index.php y queires que si vas a consultas.php se siga guardando el año?
Podría utilizar sesiones y se guardarían para toda las páginas
Código PHP:
Ver original<?php
$anyo = $_GET['id'];
if (!$anyo || $anyo == 0) {
$_SESSION['anyo'] = 2012;
}
if ($anyo <= 2012){
$_SESSION['anyo'] = 2012;
}
$_SESSION['anyo'] = 2012;
?>
<h2>
<?php
echo '<a href="index.php?id=2012" target="_self">Contavilidad 2012</a><br />
<a href="index.php?id=2013" target="_self">Contavilidad 2013</a><br />
<a href="index.php?id=2014" target="_self">Contavilidad 2014</a><br />';
?>
consultas.php
Código PHP:
Ver original<?php
$anyo=-1;
if(isset($_SESSION['anyo'])){ $anyo = $_SESSION['anyo'];
}
$result1=mysql_query("SELECT * FROM facturacion NATURAL JOIN reservas WHERE pagado LIKE 2 AND idBooking > 0 AND fechaSalida LIKE '".$anyo."-01-%'",$link);