Código PHP:
$sql = ' SELECT p.id, p.herd_id, p.scc, h.codi, h.herd_id
FROM production p, herd h
WHERE p.scc =0
AND p.herd_id = h.herd_id
LIMIT 0 , 30 ';
$consultsql=new Consulta;
$result=$consultsql->executar($sql);
$resultats=array();
while($row=mysql_fetch_array($result))
{
$resultats[]=array("cel.lules"=>$row["scc"],"numero"=>$row["id"],"ramat"=>$row["herd_id"]); //omplim l'array amb els resultats.
}
mysql_free_result($result);
gracias :P