Hi there,
Having searched everywhere on the net I just cant seem to find something simple that I, as a newbie, can understand.
I'll give as much info as possible and see if anyone can help me. The file structure I have at the moment is
Root Dir / images / dir1
/ dir2
/ dir3 etc
I have a html page with 14 links to the different galleries. When you click on the links it takes you to a HTML page that (at the moment) has a Frontpage Photo Gallery in it and when you click on the thumbnails it brings up the photo in full size.
What I need is when you click on the link it takes you to a page that displays all the photo's in thumbnail form. When you click on the thumbnail it take you to a page that displays the full size image and also allows me to add text/links etc on each individual page, rather than having to create a ton of seperate html pages.
It might sound stupid but if someone can point me in the right direction that would be all I need... if I can work out how to do it for one of the directories I could apply this to all the directories. From reading around I dont know whether I would have to have a PHP in every directory to do this or whether I just have one in the root directory. Very confused!
Hoping (Fingers Crossed) that someone will understand what I need to do and will be able to help me.
Cheers Jason
PHP Newbie needing Thumbnail Gallery Help
Moderator: General Moderators
-
musicmen2003
- Forum Newbie
- Posts: 1
- Joined: Wed Oct 22, 2003 6:13 am
If you have GD install on your server (an image manipulation extension for PHP) then the gallery can be done using one .php page, and you won't have to spend hours creating your own thumb-nails as PHP can do this for you.
If you want I could probably create a basic gallery for you and then let you do what you want with it.
Drop me an email at siro@urbanchaos.net if your interested and we'll take it from there.
If you want I could probably create a basic gallery for you and then let you do what you want with it.
Drop me an email at siro@urbanchaos.net if your interested and we'll take it from there.
-
scotchgitt
- Forum Newbie
- Posts: 2
- Joined: Wed Oct 22, 2003 2:24 pm
how can I check
Hi, how can I check if the server I am using has GD installed? I am currently using a free hosting service so have no control over it, it is running MySQL 4.0.15.
thanks
thanks
Re: how can I check
Send an email to the people hosting your web site and ask them...... that normally works.scotchgitt wrote:Hi, how can I check if the server I am using has GD installed? I am currently using a free hosting service so have no control over it, it is running MySQL 4.0.15.
thanks
Or you could upload a .php file to your server and put this code in it somewhere...
Code: Select all
<?
echo phpinfo();
?>