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) Fatal error: Uncaught Error: Call to undefined method DB::prepare() in /home/icloudist/public_html/get_products.php:88
Stack trace:
#0 /home/icloudist/public_html/category.php(105): include()
#1 {main}
thrown in /home/icloudist/public_html/get_products.php on line 88