Newbie Question - php & mustache iteration

one text

Solution:

I got it working as follows:

Changed $template to:

$template = "{{#r}}<b>{{PropName}}</b></br>{{/r}}";

And changed the render to:

$html = $m->render($template, array('r'=>$r)); 

Source