views:

833

answers:

1

What can I do to display the result of this query in the fronted using the Joomla pagination?

<?php
  $database =& JFactory::getDBO();
  $sql = 'SELECT * FROM #__no_entreprise';
  $database->setQuery( $sql );
  $rows = $database->loadObjectList();
?
+2  A: 

looking in the first result of google -> here

Gabriel Sosa
btw, this was my query http://bit.ly/njOfI
Gabriel Sosa