puoi anche fare tutto con un solo ciclo:
EDIT:Codice PHP:foreach ($records as $key => $value)
{
print $records[$key]['level']."
";
}
o se preferisci anche così:
Codice PHP:foreach ($records as $key => $value)
{
print $value['level']."
";
}
puoi anche fare tutto con un solo ciclo:
EDIT:Codice PHP:foreach ($records as $key => $value)
{
print $records[$key]['level']."
";
}
o se preferisci anche così:
Codice PHP:foreach ($records as $key => $value)
{
print $value['level']."
";
}
Il calcolatore è straordinariamente veloce, accurato e stupido.
L'uomo è incredibilmente lento, impreciso e creativo.
L'insieme dei due costituisce una forza incalcolabile.
(Albert Einstein)