El resultado del print_r es:
Array ( [id] => 2 [nom] => Alan [cnom1] => culvi [cnom2] => bertomeu [email] => [email protected] )
Pero al recorer el foreach
me muestra
El codigo del foreach es
Código PHP:
$data=$usuaris->printUsuarios(); //Guarda le array que retorna la funcion
print_r($data);
foreach ($data as $row){?>
<tr class="resultat">
<td onclick="edit(<?php echo $row["id"];?>"><img src="<?php echo $edit;?>"></td>
<td onclick="drop(<?php echo $row["id"];?>"><img src="<?php echo $drop;?>"></td>
<td><?php echo $row["nom"];?></td>
<td><?php echo $row["cnom1"]." ".$row["cnom2"];?></td>
<td><?php echo $row["email"];?></td>
</tr>
<?php }?>