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();
?