robertocommerce Posted April 7, 2017 Share Posted April 7, 2017 Bonjour à tous et désolé pour mon français, je vous écris ici parce qu'il est la partie des forums les plus actifs J'ai un problème avec error log: AH01071: Got error 'PHP message: PHP Notice: Undefined variable: count in ......./classes/Manufacturer.php on line 447\n' Ceci est mon code elseif ($order_by == 'quantity') $alias = 'stock.'; else $alias = 'p.'; $query_begin = 'SELECT * FROM ('; if ($count) { $query_end = ') AS tmp GROUP BY tmp.`id_product` '; } else { $query_end = ') AS tmp GROUP BY tmp.`id_product` ORDER BY tmp.`name` LIMIT '.(((int)$p - 1) * (int)$n).','.(int)$n; } $attr = ''; $attr = $attr . ' SELECT DISTINCT pouvez-vous me aider s'il vous plaît?, cette erreur remplit mon error log merci!! Link to comment Share on other sites More sharing options...
Eolia Posted April 7, 2017 Share Posted April 7, 2017 Remplacez if ($count) { par if (!empty($count)) { $count n'existe pas forcément et n'est défini nul part... 1 Link to comment Share on other sites More sharing options...
robertocommerce Posted April 7, 2017 Author Share Posted April 7, 2017 Merci beaucoup Eolia! 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