Guill4ume Posted October 26, 2010 Share Posted October 26, 2010 Bonjour a tous,J'ai créé une fonction : function sous_menu_categorie($id_categorie) { $sql='SELECT `id_category` WHERE `id_parent`='.$id_categorie.' FROM `ps_category`'; // on envoie la requête $req = mysql_query($sql) or die('Erreur SQL ! '.$sql.' '.mysql_error()); // on fait une boucle qui va faire un tour pour chaque enregistrement while($data = mysql_fetch_assoc($req)) { // on affiche les informations de l'enregistrement en cours echo $data['id_category']; } } Pour le moment je veut juste afficher les IDs des sous categories parentes Mais mon autre problème vien au moment d'appeller cette fonction : {sous_menu_categorie(5)} Cela fait beuger la page ( j'ai une page blanche ... )Quelqu'un peut m'aidé ? merci Link to comment Share on other sites More sharing options...
DevNet Posted October 27, 2010 Share Posted October 27, 2010 Bonsoir,Vous devez d'abord la passer en register_function à smarty depuis le php.Aidez-vous du /config/smarty.config.inc.phpBonne continuation 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