SELECT p.*
FROM `products` p
INNER JOIN (
SELECT MAX(id) AS max_id
FROM `products`
GROUP BY `title`
) AS latest_products ON p.id = latest_products.max_id
ORDER BY p.id DESC
LIMIT 30;
SQLSTATE[HY000] [1226] User 'icloudist_icloud9us' has exceeded the 'max_connections_per_hour' resource (current value: 200)
Warning: Undefined variable $db in
/home/icloudist/public_html/get_products.php on line
27
Fatal error: Uncaught Error: Call to a member function prepare() on null in /home/icloudist/public_html/get_products.php:27
Stack trace:
#0 /home/icloudist/public_html/get_products.php(103): get_img('768586-B21-HP-X...', 34081, 1)
#1 /home/icloudist/public_html/category.php(105): include('/home/icloudist...')
#2 {main}
thrown in
/home/icloudist/public_html/get_products.php on line
27