Popular content
views
Drupal Views count results 2
Here's a cool trick, drop this code in your views display header to show how many rows were returned by the query (be sure to use the PHP code input format):
There are currently <?php
$view = views_get_current_view();
echo $view->total_rows; ?> records displayed.
I imagine that the views_get_current_view() function can come in handy for other purposes.
by b.howe on Wed, 02/03/2010 - 12:08
