> With regards to Marek,
> I don't see how there would be two queries, because there row
conisists of
> image properties and image data. So when i select the required row(s),
I
> will have properties and images. So it will be 1 query, of course it
is a
> big (size-wise) query.

Hopefully you've gotten the point that this isn't true. If you store
your images in the database, it's going to make your main script execute
one query to output something like <img src="file.php?id=xxx"
...properties...> for each image. Each one of those <img> tags will be a
separate request where file.php would pull the data for _one_ image,
send the headers and then send the data. 

---John W. Holmes...

PHP Architect - A monthly magazine for PHP Professionals. Get your copy
today. http://www.phparch.com/



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to