File manager

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
Frostbite
Forum Newbie
Posts: 4
Joined: Wed Apr 16, 2003 5:22 am

File manager

Post by Frostbite »

hi, I have my own server with php and mysql installed, and i will probably install perl and asp very soon. i want to give people free hosting. does anyone know a script that could let people fill in a form where they type in a username, password and their email address, their username would be the same as their domain so if they signed up with the username 123456789 then the url to their site would be http://www.something.com/123456789 which means the script would need to create a folder called 123456789. when they have signed up their username and password would be put into the mysql database so that the login form would work. then when they log in they would get a simple filemanager which if they uploaded files would put them in the directory /123456789 or whatever their username is

would anyone have any ideas how to do this, thanks
User avatar
m3mn0n
PHP Evangelist
Posts: 3548
Joined: Tue Aug 13, 2002 3:35 pm
Location: Calgary, Canada

Post by m3mn0n »

When a user submits his info, save it all to atext fileor database.

Next, use the filesystem functionsto create a directory and even add files to that directory.

If you want a complete working app, try searching at hotscripts.
Frostbite
Forum Newbie
Posts: 4
Joined: Wed Apr 16, 2003 5:22 am

Post by Frostbite »

k thanks
Post Reply