Pues bien el caso es que me da error en este formulario. donde en un sitio en concreto para llevar a cabo la eliminacion de una noticia uso otro form, mejor os pongo el código.
<?php include_once('../General/cabecera.php');?>
<section id="principal-ancho">
<div id="Admin_Noticias">
<h1>Gestión de Noticias</h1>
<p>En esta página podrás gestionar las noticias, modificando o eliminando las existentes. Además seleccionaremos entre 2-4 Noticias para que estén visible para los usuarios de nuestro sistema.</p>
<p>Pulse <a href="GNoticias_nueva.php">aquí</a> para insertar una nueva noticia en el sistema.</p>
<!-- Estado 1= Visible, Estado 0= Oculta-->
<form name="noticias" method="post" action="GNoticias-action.php" target="a">
<table class="table" width="800" border="1" align="left" cellpadding="5" cellspacing="0">
<tr>
<th class="td" width="70">Selección</th>
<th class="td" width="550">Título</th>
<th class="td" width="70" >Fecha</th>
<th class="td" width="110">Accion</th>
</tr>
<?php
$res= mysql_query("SELECT * FROM noticias");
if(mysql_num_rows($res)>0){
while($r=mysql_fetch_assoc($res))
{
$seleccionado=mysql_query("SELECT estado FROM noticias WHERE id_noticia= '".$r['id_noticia']."'");// La noticia aparece seleccionada si lo estaba.
?>
<tr>
<td style="text-align:center"><input <?php if($seleccionado==1){?> checked <?php }?> type="checkbox" value="1" id="seleccion"/></td>
<td><?php echo $r['titulo'];?></td>
<td style="text-align:center"><?php echo date("d/m/Y", strtotime($r['fecha_reg']));?></td> // AQUÍ ES DND ME SALE EL ERROR, PUESTO METO ESTE PEQUEÑO FORM DENTRO DE OTRO.. ALGUNA SOLUCION???
<td style="text-align:center"><a href="GNoticias_modificar.php"><img src="../Imagenes/ajax-loader.gif" width="32" height="32" alt="Modificar Noticia"></a> <form method="post" name="eliminar noticia" target="a" action="GNoticias_eliminar-action.php">
<input type="image" src="../Imagenes/ajax-loader.gif" name="eliminar" >
<input type="hidden" value="<?php echo $r['id_noticia'];?>" id="id_noticia">
</form> </td>
</tr>
<?php }?>
<tr>
<td style="text-align:left" colspan="7"> <input type="submit" name="submit" value="Guardar" /></td>
</tr>
<?php }else{ ?>
<tr>
<td colspan="7"> <?php echo "Inserte su primera noticia.. " ?> </td>
</tr>
<?php } ?>
</table>
</form>
</div>
</section>
<?php include_once('../General/footer.php');?>