|
Posted by SOR on 07/22/05 03:24
<comp.lang.php , Konrad Viltersten , tmp1@viltersten.com>
<3k9dcqFtf0hcU1@individual.net>
<Thu, 21 Jul 2005 13:15:34 +0200>
> Above that i have a, of course, a few tousands of MOV
> and GIF stored as well. It's all more or less finished but
> the maintaince is a bitch.
>
> What i wish to do is to use something, let's call it MOC as
> in Method Of Choice, that will let me storage all data in a
> more convienient way.
>
> Now, to the main question - is the combination PHP/SQL a
> suitable choice for that task? Is there a better
> combination? I have a few years experience of Java but
> i'm rather sure that the users won't have it installed nor
> will the bunch be able/willing to do it. Any thoughts?
>
You dont really say what you want the finished screen to look like .
If your intention is to upload a mov or gif file and have it
automatically show up in the listing - then yes it can be done .
Apply a little bit of logic and decide what you need to get started .
In your case it would be a loop that display the contents of a folder to
the screen as a folder/directory listing .
You can find a basic folder loop on www.phpemail.co.uk
Once you get the loop working then the first job would be to make
clickable nav links from the folder listing .
$poo = a filename
<a href="<?php print $poo; ?>"><?php print $poo; ?></a>
After that the next thing would be to write some code that allows you to
navigate through the folders .
Write it in such a way its like a nav bar running down the left had side
of the screen .
End result , You have something that works & perhaps more importantly
have something to work on and add too .
Navigation:
[Reply to this message]
|