salve volevo domandarvi come posso ottenere i dati $row['nome']; ecc da questa funzione
Codice PHP:
function ViewTechId($staffid){
 global 
$dbcore ;
$result $dbcore->getlist("select t. *,tass. departmentid  ,tsign.signature from tech as t  left join techassigns as tass on  t.staffid = tass.staffid left join techsignatures as tsign on  t.staffid = tsign.staffid where t. staffid =  $staffid");

foreach (
$result  as $row)
{
$row['nome'];
$row['cognome'];

}