Is there a way to combine several images and print them all? example:
$a = a.gif $b = b.gif $c = c.gif $d = d.gif
then print them all as if they were one image. The server I am using has PHP version 3.0.12 HELP!!!
How do you mean? Do you want to tile them across a page:
a b c d
or something else?
Jim
I want all the images to be displayed at once.
example: abcd
cept they would all be images.
you could try using the GD lib functions, if you have them installed.
open all the images, get their sizes, create a new image, copy and paste.
-- rad
Eric,
You can do this by PHP Image function Try imagecopyresized()
Enjoy !
deewakar
I'm looking at it but I don't totaly understand exactly ow to use it. Can you help?