In php, it's *very* simple:
then you just add some columns for editing options.
you will also need to make some functions to do something when the ACTION has been selected by the user.
How you choose to let the user post his/her action, is up to you. You can have regular hyperlinks, submit buttons, etc.
You could also have images, inside hyperlinks.. eg. A pen for edit, an X for delete, I for info? etc.
As far as the functions go: If you are to delete things, you have the function unlink()
You will however need some kind of security, blocking users from abusing your script.
If you wish to let several users admin theire own directory, you could block them out with htaccess, or maybe just php/mysql login..
You could either specify all files that belong to all users in a db, or you could simply only let them do things in theire own directory.
eg. with a db in backend, they could have access to a "virtual" directory and simply only have access to the files that are relevant to theire user_id, which has to be unique.
Olav Alexander Mjelde
Admin & Webmaster