Yo lo he hecho asi pero algo falla me da este error:
Parse error: syntax error, unexpected T_WHILE in /home1/sonidom1/public_html/miradivx/Categoria.php on line 227
Código PHP:
<?php
$id=$_GET['g'];
$sql3="SELECT * FROM peliculas WHERE idGenero=$id";
$result3=mysql_query($sql3) or die('No hay generos.');
$fila3=mysql_fetch_assoc($result3)
while($categres=mysql_fetch_assoc($fila3)){
echo '<a href="'$categres['id']'">'.$categres['Titulo'].'</a>';
}
?>