este código no me funciona a pesar de estar todo correcto, por lo menos es lo que creo:
Código PHP:
<?
require_once('../vars.php');
require_once 'PHPPaging.lib.php';
$paging = new PHPPaging;
$paging->agregarConsulta("SELECT * FROM noticias ORDER BY id DESC");
$paging->ejecutar();
while($datos = $paging->fetchResultado()) {}
?>
<table width="100%" border="0" cellspacing="0" cellpadding="5">
<tr>
<td colspan="3" class="noticias_titulo"><a name="" id="<? echo $datos['id'] ?>"></a><? echo $datos['titulo']; ?></td>
</tr>
<? if (($datos['foto']) != ('')) { ?>
<div align="center"> <br />
<table border="0" cellpadding="3" cellspacing="1" bgcolor="#999999">
<tr>
<td width="100%" bgcolor="#000000"><img src="http://www.forosdelweb.com/f18/files/<? echo $datos['foto'] ?>"></td>
</tr>
</table>
</div><br /><br />
<? } ?>
<? echo $datos['texto']; ?><br /><br /></td>
</tr>
<tr>
<td width="20%" class="noticias_autor">Fecha: <? echo $datos['fecha']; ?></td>
<td width="30%" class="noticias_autor"><? if (($datos['autor']) != ('')) { ?>Autor: <? echo $datos['autor']; } ?></td>
<td width="50%" class="noticias_autor"><? if (($datos['fuentenombre']) != ('')) { ?>Fuente: <a href="<? echo $datos['fuenteurl']; ?>" target="_blank"><? echo $datos['fuentenombre']; ?></a><? } else { ?> <? } ?></td>
</tr>
</table>
<?php
// Imprimimos la barra de navegación
echo "<b>Navegación</b>: ".$paging->fetchNavegacion();
?>
Me detecta todos los datos de la base de datos pero no me los muestra.