setConnection("host","user","password","databasename","tablename"); $a->set_Links(10);//set if you are using numbered links. otherwise leave this out. $a->set_Limit(10); $a->setQuery("select * from tablename"); //$a->getResults(); will give the results. You can process these in your usual //way. I just use mysql_fetch_object as a personal preference. while ($row = mysql_fetch_object($a->getResults())) { echo $row->id; echo $row->name . "
"; } //get the links $a->firstLast(); ?>