I am having one array like this. The tree structure of this array is very big. I want to print the array using the smarty tags in the html file. I am using this code to do this,
Assigned like this in PHP file, $smarty->assign("arrForumData", $arrForumData);
In HTML File like this for single dimension array.
{foreach item=foo from=$arrForumData}
{$foo.question}
{$foo.name} etc...
{/foreach}
I dont know how to print array which is like below in smarty. Please guide me how to print multidimension array's in smarty. Hope my question is clear. thanks in advance.
