Page 1 of 1

Photo Gallery

Posted: Sun Feb 27, 2005 12:26 pm
by Maluendaster
Ok, anyone know where I can find a photo gallery that can be easy integrated into a website?? I am making a site of women pictures, and i can't find a good script...

Posted: Sun Feb 27, 2005 12:31 pm
by feyd
I'd bet hotscripts.com has several. Alternately, you could make your own.. there are many threads on the forums here dealing with displaying image-gallery like data.. all quite simple..

Posted: Sun Feb 27, 2005 12:31 pm
by smpdawg

Posted: Sun Feb 27, 2005 1:02 pm
by Maluendaster
i found this one, and i think its good... another question, how do i know if my server has GD Library installed?

Code: Select all

http://wnailer.vddh.com/index.php

Posted: Sun Feb 27, 2005 1:06 pm
by feyd

Code: Select all

<?php phpinfo(); ?>
read through it. You should see a section marked GD if it's installed. This will show more detailed information, such as version number and supported image types.

alternately:

Code: Select all

<?php var_export(get_loaded_extensions()); ?>
will show a compact list of installed extensions.

Posted: Mon Feb 28, 2005 12:23 am
by Maluendaster
ok, thanks.