On the API page, notice the effect of $pager -- it calls pager_query() with 10 as the limit.<div><br></div><div>You might consider using Views <a href="http://drupal.org/project/views">http://drupal.org/project/views</a> for doing this sort of thing.<br>

<br><div class="gmail_quote">On Wed, Jan 26, 2011 at 10:13 AM, bob brazeau <span dir="ltr">&lt;<a href="mailto:bobbrazeau@gmail.com">bobbrazeau@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
This is for verision 6 of Drupal.<br>
I have a taxonomy category with 11 results, but only the top 10 are<br>
showing up.  I am getting my results by<br>
 $result = taxonomy_select_nodes(array($tid), &#39;or&#39;, 0, FALSE, &#39;n.title asc&#39;);<br>
<br>
 Looked into the code for the select<br>
  <a href="http://api.drupal.org/api/drupal/modules--taxonomy--taxonomy.module/function/taxonomy_select_nodes/6" target="_blank">http://api.drupal.org/api/drupal/modules--taxonomy--taxonomy.module/function/taxonomy_select_nodes/6</a><br>

<br>
 and based on my parameters came up with the following query<br>
  $result = db_query(&quot;select distinct(n.nid), n.sticky, n.title,<br>
n.created from node n inner join term_node tn on n.vid=tn.vid where<br>
tn.tid = %d and n.status = 1 order by n.title asc&quot;,$tid);<br>
<br>
 which returns all 11 results.<br>
<br>
 I went into /admin/content/node-settings and upped the value from 10<br>
to 30, but there was no change.<br>
<br>
Then I changed the FALSE to TRUE in the original code and all 11<br>
results showed up.  Not sure why the result set was limited when<br>
paging was turned OFF.  Can anyone shed light on what was happening<br>
there?<br>
<br>
Thanks,<br>
<font color="#888888"><br>
Bob<br>
</font></blockquote></div><br></div>