I have this snippet :
<?php
$list = $modx->runSnippet('getResources', array(
'parents'=>'16',
'depth'=>'1',
'includeContent'=>'1',
'limit'=>'1'
));
$output = explode(',', $list);
//print_r($list);
foreach($output as $i) {
//echo $i;
foreach($i as $key => $value) {
echo $key.' : '.$value.'<br />';
}
}
With print_r I can see the array ;-)
But using the foreach loop... nothing print !
Thanks for your help...