4lO5AN Posted February 19, 2014 Share Posted February 19, 2014 Bonjour, J'ai un soucis pour récupérer les valeurs d'une variable. Tout d'abord dans mon fichier php j'assigne une variable qui contient le résultat d'une requête SQL (elle fonctionne). if($sqlimg=$connexion->query('REQUETE SQL')) $smarty->assign('urlimg', $sqlimg); Ensuite dans mon .tpl j'ai quelque chose comme çà {foreach from=$posts item=post} <h3>Code</h3> <img src="{$urlimg}"></img> <h3>Code</h3> {/foreach} Imaginons que $urlimg contienne 2 résultats. Comment faire pour afficher le premier résultat au premier foreach etc... Merci Link to comment Share on other sites More sharing options...
4lO5AN Posted February 19, 2014 Author Share Posted February 19, 2014 Du coup j'ai trouvé il fallait mettre le résultat de la requête dans un tableau $i=0; if(!empty($sqlimg)) { foreach( $sqlimg as $r ) { $logos[$i] = $r['nomduchamp']; $i++; } } $smarty->assign('urlimg', $logos); 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