Would it make sense to improve pageload speed by serving smaller images from the database rather than make multiple HTTP requests given that the website is PHP driven?
I’m thinking of smaller page design elements, buttons, thumbnails for galleries etc.
No. Since:
If you want to make fewer HTTP requests, you can sprite the images, but don’t do that with content images (which should have proper
<img>elements with alt text).