Mirar los 2 botones hacen lo que quiero pero los links no X(
EDITO E MODIFICADO UN POCO PARA VER SI SABEIS LO QUE QUIERO HACER
TROZO DEL CÓDIGO
Código
<div class="menu"> <form action="index.php" method="get"> <input type="submit" name="page_id" value="Inicio"> <input type="submit" name="page_id" value="Recursos"> <a href="http://localhost/mipage/index.php?page_id="<?php echo $_GET['page_id']?> name='page_id' value="Inicio">Inicio</a> <a href="http://localhost/mipage/index.php?page_id="<?php echo $_GET['page_id']?> name='page_id' value="Recursos">Recursos</a> </form> </div>
Código completo.
index.php
Código
<!-- Start! By Xafi --> <?php $_SESSION['ID']=$_GET['page_id']; } else { $_GET['page_id']='Inicio'; $_SESSION['ID']=$_GET['page_id']; } /*include('funciones.php'); $conexion=Conectar('localhost','root','','test'); $busqueda= 'select * from pagina where id='.$_SESSION['ID'];*/ ?> <html> <head> <link rel="STYLESHEET" type="text/css" href="style.css"> <title><?php echo $_SESSION['ID'];?></title> </head> <body> <br> <span class="fail"><?php echo $_GET['page_id'];?></span> <br> <div class="menu"> <form action="index.php" method="get"> <input type="submit" name="page_id" value="Inicio"> <input type="submit" name="page_id" value="Recursos"> <a href="http://localhost/mipage/index.php?page_id="<?php echo $_GET['page_id']?> name='page_id' value="Inicio">Inicio</a> <a href="http://localhost/mipage/index.php?page_id="<?php echo $_GET['page_id']?> name='page_id' value="Recursos">Recursos</a> </form> </div> <br> <?php if($_SESSION['ID']=='Inicio')echo 'Estas en la pagina principal'; else if($_SESSION['ID']=='Recursos')echo 'Estas en la pagina de recursos'; else if($_SESSION['ID']=='Proyecto')echo 'Estas en la pagina de proyectos'; ?> </body> </html>
style.css
Código
/* Estilo xafi */ .menu { font-size: 16px; font-weight: bolt; } .fail { font-size: 20px; color: #0000ff; } a:link { text-decoration: none; color: #ff0000; } a:visited { text-decoration: none; color: #ff0000 } a:active { text-decoration: none; color: #00ff00; }