|
Posted by Krustov on June 28, 2008, 10:40 am
Please log in for more thread options <comp.lang.php>
<Paul Furman>
<Sat, 21 Jun 2008 14:31:43 -0700>
> I've set up a web gallery with 6 thumbnails per page, etc with php which
> is a big complicated mess because I'm not a brilliant programmer... it
> is the outgrowth of a couple classes I took at a community college & not
> my main career... anyways someone asked me to set up something like that
> for their web site and I'm wondering if there is a simpler php package
> to accomplish this task. I prepare thumbnails in a subfolder named
> thumbs and put annotation in little text files:
>
> _DSC5801.jpg _DSC5801.txt thumbs/_DSC5801.jpg
>
> I've got a copy running on localhost that includes admin stuff for
> creating those text files, which most people would probably do using
> mySQL (complicated) and you'd still need to set up a boatload of junk
> for admin login so I guess those annotations would just have to be
> created manually if this solution is going to be simple.
>
> Any ideas?
>
www.jpgimage.co.uk started off as a simple app and somewhere i could
upload a screenshot to without the need to fire up a ftp app .
Over several months it gradually grew as i added options to it .
While you can of course install a script that somebody wrote - the fact
is its never going to look or do exactly what you want it to do .
So , What you could do is start from scratch to get the uploader to work
and to display the image , Then learn as you go by adding various
options to it .
The first thing to learn being how to automatically create thumbnails
using the image you just uploaded .
BTW: the jpgimage.co.uk website doesnt use mysql - and its all done with
flat files - so despite what you might think - you dont need to use a
sql database if you dont want to .
|