Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Alex http://singularity.ru

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

[drupal] Show all nodes of current type

$result = db_query('SELECT n.nid FROM {node} n WHERE n.type = '."'node_type'".' and n.status = 1');
    $output = '';
    while ($node = db_fetch_object($result))
    {
        $output .= node_view(node_load($node->nid), true);
    }

    print $output;


« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS