guilli Posted May 23, 2011 Share Posted May 23, 2011 Bonjour,Le cas que je présente ne sers à rien mais il me bloque.Dans l'un de mes fichier tpl de mon thème je tente d'exécuter le code suivant (exemple trouvé sur le site officie de smarty): ><?php $arr = array(1000, 1001, 1002); $smarty->assign('myArray', $arr); ?> </pre> <ul> {foreach from=$myArray item=foo} {$foo} {/foreach} </ul> Je devrais donc normalement voir apparaitre: 1000,1001,1002 dans une liste ordonnée mais je vois : assign('myArray', $arr); ?> Quelle est la syntaxe correcte pour que mon code soit correctement interprété dans mon fichier tpl ? Link to comment Share on other sites More sharing options...
coeos.pro Posted May 24, 2011 Share Posted May 24, 2011 bonjour tu as mis <?php ... ?> dans un fichier tpl ou php ? Link to comment Share on other sites More sharing options...
guilli Posted May 24, 2011 Author Share Posted May 24, 2011 Bonjour,Merci c'était ça j'avais mis mon php dans le tpl, donc cela ne marchait pas.merci Link to comment Share on other sites More sharing options...
coeos.pro Posted May 24, 2011 Share Posted May 24, 2011 De rien, des fois on fais des erreurs toute bêtes, si vous n'avez pas encore la doc smarty vous la trouverez sur http://www.smarty.net/documentation comme par exemple : http://www.smarty.net/docsv2/fr/language.function.foreach et en plus c'est en Français... Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now