Re: [PHP] image galleries

2007-11-22 Thread Martin Marques
Lisa A escribió:
 Does anyone know of an image gallery I can use on multiple pages of a 
 website.  I'd like to be able to click on the thumbnails and see a larger 
 image.
 Hopefully something simple and easy to install.

gallery2

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



[PHP] image galleries

2007-11-21 Thread Lisa A
Does anyone know of an image gallery I can use on multiple pages of a 
website.  I'd like to be able to click on the thumbnails and see a larger 
image.
Hopefully something simple and easy to install.
thanks,
Lisa A

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



RE: [PHP] image galleries

2003-06-26 Thread Johnny Martinez
The Gallery I recommended can be edited so the thumbnails don't display and
you can make the links appear instead. Shouldn't be tough, the info is
already there. Just replace the img tag with the a href text.

before:
a href='images/cars/bmw/pic1.gif'img
src='images/cars/bmw/pic1_thumb.gif'/a

after:
a
href='images/cars/bmw/pic1.gif'http://www.domain/images/cars/bmw/pic1.gif/
a

J
-Original Message-
From: chris sherwood [mailto:[EMAIL PROTECTED]
Sent: Monday, June 23, 2003 10:20 AM
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: Re: [PHP] image galleries


I haven't found anything that would handle the problem you have... in my
case I would create the galleries that I needed... maybe write some
reiterate code that would display recreated thumbs from the images...


this could be done when the upload is done and the new image created from
the old one using create from functionality available in the php engine such
as
http://ca3.php.net/manual/en/function.imagecreatefromjpeg.php

or one of the others you find there good luck



Alan Quirk [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]...
 I've had a look around lots of script sites (hotscripts, etc) and there
are
 lots of scripts for gd-library galleries, but unfortunately the server i'm
 using does not support it, and I really want to have a gallery where
 pictures can be uploaded and all the appropriate directories are created
 automatically (i'm not that good with code just yet) but instead of
listing
 pages of thumbnails it just automatically lists the pics in the gallery as
 text links.

 I hope you can be of some help, I can't find anything anywhere on the
whole
 internet like this.



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





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

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



Re: [PHP] image galleries

2003-06-25 Thread chris sherwood
I haven't found anything that would handle the problem you have... in my
case I would create the galleries that I needed... maybe write some
reiterate code that would display recreated thumbs from the images...


this could be done when the upload is done and the new image created from
the old one using create from functionality available in the php engine such
as
http://ca3.php.net/manual/en/function.imagecreatefromjpeg.php

or one of the others you find there good luck



Alan Quirk [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]...
 I've had a look around lots of script sites (hotscripts, etc) and there
are
 lots of scripts for gd-library galleries, but unfortunately the server i'm
 using does not support it, and I really want to have a gallery where
 pictures can be uploaded and all the appropriate directories are created
 automatically (i'm not that good with code just yet) but instead of
listing
 pages of thumbnails it just automatically lists the pics in the gallery as
 text links.

 I hope you can be of some help, I can't find anything anywhere on the
whole
 internet like this.



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





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



[PHP] image galleries

2003-06-23 Thread Alan Quirk
I've had a look around lots of script sites (hotscripts, etc) and there are
lots of scripts for gd-library galleries, but unfortunately the server i'm
using does not support it, and I really want to have a gallery where
pictures can be uploaded and all the appropriate directories are created
automatically (i'm not that good with code just yet) but instead of listing
pages of thumbnails it just automatically lists the pics in the gallery as
text links.

I hope you can be of some help, I can't find anything anywhere on the whole
internet like this.



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



Re: [PHP] image galleries

2003-06-23 Thread bbonkosk
Well,
Start here to read about how to upload files to a web server..
http://us2.php.net/features.file-upload

And then as for displaying them, look into some standard HTML to display the 
text links, and possibly this solutions for readin directory contents:
http://us2.php.net/manual/en/ref.dir.php

HTH
-Brad

 I've had a look around lots of script sites (hotscripts, etc) and there are
 lots of scripts for gd-library galleries, but unfortunately the server i'm
 using does not support it, and I really want to have a gallery where
 pictures can be uploaded and all the appropriate directories are created
 automatically (i'm not that good with code just yet) but instead of listing
 pages of thumbnails it just automatically lists the pics in the gallery as
 text links.
 
 I hope you can be of some help, I can't find anything anywhere on the whole
 internet like this.
 
 
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 





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



RE: [PHP] image galleries

2003-06-23 Thread Johnny Martinez
I highly recommend this Gallery: http://sourceforge.net/projects/gallery
I've used it in many webs, it's very fast, modular, handles multiple formats
and is fairly easy to customize. Here is a web that I integrated it with:
http://www.roundaboutdesigns.com/gallery

Johnny

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Monday, June 23, 2003 6:20 AM
To: Alan Quirk; [EMAIL PROTECTED]
Subject: Re: [PHP] image galleries


Well,
Start here to read about how to upload files to a web server..
http://us2.php.net/features.file-upload

And then as for displaying them, look into some standard HTML to display the

text links, and possibly this solutions for readin directory contents:
http://us2.php.net/manual/en/ref.dir.php

HTH
-Brad

 I've had a look around lots of script sites (hotscripts, etc) and there
are
 lots of scripts for gd-library galleries, but unfortunately the server i'm
 using does not support it, and I really want to have a gallery where
 pictures can be uploaded and all the appropriate directories are created
 automatically (i'm not that good with code just yet) but instead of
listing
 pages of thumbnails it just automatically lists the pics in the gallery as
 text links.
 
 I hope you can be of some help, I can't find anything anywhere on the
whole
 internet like this.
 
 
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 





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

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