ciao stefano , ma non sapreo come integrarla la funzione e questa :Codice PHP:
function GetStaff()
{
global $dbcore;
global $settings ;
$sql = mysql_query("select t. * , gs. id_groups ,gs. nome_group from tech t left join grouptech gs on t. groupid = gs. id_groups order by t. staffid asc limit $primo, $per_page_staff") or die(mysql_error());
$return = array();
while ($row = mysql_fetch_assoc($sql))
{
$return[] = $row;
}
return $return;
}