Código PHP:
for($i=0;$i<mysql_num_rows($res);$i++)
{
$row=mysql_fetch_array($res);
$bool=1;
while($bool==1)
{
echo "<tr>";
echo "<td><a href='formato.php?valor=".$seccion.",".$row[0]."'>".$row[0]."</a></td><td>".$row[1]."</td>";
echo "</tr>";
$bool=0;
}//fin del while
}//fin de for
Código PHP:
$opciones=explode(",",$_REQUEST['valor']);
$conexion=mysql_connect("localhost","Usuario","Contraseña")or die("problemas en la conexion");
mysql_select_db("BDNOTICIAS",$conexion)or die("problemas en la seleccion de la base de datos");
$registros=mysql_query('select * from noticias n join personal p join categoria c on n.RFC=p.RFC and n.Idcatego=c.Idcatego where n.Idcatego="'.$opciones[0].'" and n.Nombrenot="'.$opciones[1].'"');
$reg=mysql_fetch_array($registros);