Código PHP:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento sin título</title>
</head>
<body>
<p><img src="img/logo_jardinplaza_jpg.jpg" width="250" height="115"></p>
<p>
<?
include('connect.php');
$noticia=$_REQUEST['ev'];
$publicar= mysql_query( "SELECT * from eventos where titulo = '".$noticia."' ") or die (mysql_error());
$publicacion=mysql_query($publicar);
$filas=mysql_num_rows($publicacion);
if($filas>0){
while ($row=mysql_fetch_array($publicacion))
{
{
echo "<tr><td><b>".$row["titulo"]."</b></td></tr>";
echo "<tr><td><div align='justify'><em>".$row["descripcion"]."</em></div></td></tr>";
echo "<tr><td><div align='justify'>".$row["fecha_inicial"]."</div></td></tr>";
echo "<tr><td><div align='justify'>".$row["fecha_final"]."</div></td></tr>";
}
}
}
?>
</p>
</body>
</html>
donde mi linea 17 es
Código PHP:
$filas=mysql_num_rows($publicacion);
que puede ser?