Photo Gallery

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
Maluendaster
Forum Contributor
Posts: 124
Joined: Fri Feb 25, 2005 1:14 pm

Photo Gallery

Post 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...
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post 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..
User avatar
smpdawg
Forum Contributor
Posts: 292
Joined: Thu Jan 27, 2005 3:10 pm
Location: Houston, TX
Contact:

Post by smpdawg »

Maluendaster
Forum Contributor
Posts: 124
Joined: Fri Feb 25, 2005 1:14 pm

Post 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
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post 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.
Maluendaster
Forum Contributor
Posts: 124
Joined: Fri Feb 25, 2005 1:14 pm

Post by Maluendaster »

ok, thanks.
Post Reply