Codice PHP:
while (list ($info_key,$info_value)= each($info)) {
if (is_array($info_value)) {
foreach ($info_value as $subvalue) {
...
};
} else {
...
};
};
Codice PHP:
while (list ($info_key,$info_value)= each($info)) {
if (is_array($info_value)) {
foreach ($info_value as $subvalue) {
...
};
} else {
...
};
};