Return to Snippet

Revision: 33615
at October 11, 2010 03:26 by JohnnyGamba


Initial Code
$type = 'blog';
$status = 1;
$sql = "SELECT * FROM {node} n WHERE type = '%s' AND status = %d ORDER BY
n.created DESC";
$pager_num = 0; // This is the first pager on this page. We number it 0.
$result = pager_query(db_rewrite_sql($sql), 10, $pager_num, NULL, $type,
$status);
while ($data = db_fetch_object($result)) {
$node = node_load($data->nid);
print node_view($node, TRUE);
}
// Add links to remaining pages of results.
print theme('pager', NULL, 10, $pager_num);

Initial URL


Initial Description


Initial Title
Mostrar Nodos con paginador

Initial Tags
drupal

Initial Language
PHP