I have a database, that stores items and a link to an image for every item. Now the images can't be storen localy (there wouldn't be anough space and other reasons as well), so I link to images on other servers.
When I wan't to display the items (with it's image), I run while statement with mysql_fetch_array like this (simplified):
$result = mysql_query("SELECT * FROM items");
while($row = mysql_fetch_array($result)) {
echo "<h1>".$row['name']."</h1>";
echo "<img width='200' src='".$row['img']."' />";
}
But the image load takes forever, because some of the external images have large sizes, however I only need it 200px wide.
Is there a way to smaller the image 'on the go', or something to speed the loading up?
(Using php/html)
Thanks, Mike.