Salut,
j'ai un problème pour utiliser les blocks imbriqués de smarty. Je vous montre mon code:

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
 
<?php
require_once 'Smarty.class.php';
 
 
 
$cat=array(
			  array
				(
					'id' 		=> 1,
					'nom' 		=> 'test 1',
					'description' 	=> 'testtttt'
				),
			  array
				(
					'id' 		=> 2,
					'nom' 		=> 'test 2',
					'description' 	=> 'testtttt'
				),
			  array
				(
					'id' 		=> 3,
					'nom' 		=> 'test 3',
					'description' 	=> 'testtttt'
				)
		   );
 
 
$forum=array(
    1 => array
        (
            array
                (
                    'id' => 1,
                    'is_parent' => 0,
                    'nom' => 'sous test',
                    'description' => 'sous testttt'
                ),
           array
                (
                    'id' => 2,
                    'is_parent' => 0,
                    'nom' => 'sous test',
                    'description' => 'sous testttt'
                ),
            array
				(
                    'id' => 3,
                    'is_parent' => 0,
                    'nom' => 'sous test',
                    'description' => 'sous testttt'
                )
        ),
	2 => array
        (
            array
                (
                    'id' => 3,
                    'is_parent' => 0,
                    'nom' => 'sous test',
                    'description' => 'sous testttt'
                ),
           array
                (
                    'id' => 4,
                    'is_parent' => 0,
                    'nom' => 'sous test',
                    'description' => 'sous testttt'
                ),
            array
				(
                    'id' => 5,
                    'is_parent' => 0,
                    'nom' => 'sous test',
                    'description' => 'sous testttt'
                )
        ),
	3 => array
        (
            array
                (
                    'id' => 6,
                    'is_parent' => 0,
                    'nom' => 'sous test',
                    'description' => 'sous testttt'
                ),
           array
                (
                    'id' => 7,
                    'is_parent' => 0,
                    'nom' => 'sous test',
                    'description' => 'sous testttt'
                ),
            array
				(
                    'id' => 8,
                    'is_parent' => 0,
                    'nom' => 'sous test',
                    'description' => 'sous testttt'
                )
        )
);
 
 
 
$tpl=new Smarty();
$tpl->template_dir='template';
$tpl->compile_dir='template_c';
$tpl->assign('forumCat', $cat);
$tpl->assign('forumForum', $forum);
$tpl->display('mon_fichier.html');
?>
 
<html>
{section name=cat loop=$forumCat}
    <table>
        <tr>
            <td>{$forumCat[cat].id} {$forumCat[cat].nom}</td>
        </tr>
        {section name=forum loop=$forumForum[cat]}
         <tr>
            <td>{$forumForum[cat][forum].nom}</td>
        </tr>
        {sectionelse}
        <tr>
            <td>C'est vide</td>
        </tr>
        {/section}
    </table>
{/section}
</html>

Le problème est que pour le tableau $forum je n'arrive a lui indiquer dans la section le
Code : Sélectionner tout - Visualiser dans une fenêtre à part
 $cat['id']. ( loop=$forumForum[{$forumCat[cat].id}]
, {$forumCat[cat].id} n'est pas pris en compte apparement )
Si quelqu'un pouvait m'aider
@+