I've been learning PHP. What I have now are a few scripts here and there that are usefull for me and the test envroment I'm working in. What I'd like to do is to send a simple text file without having to ask for user interaction. Also a way to log into the site and create your own folder. (example http://www.domainname.com/users/johndoe/) Anyone have an idea?
To send text, you might want to check out the php mail() command --
To make a folder on the server, check out php's mkdir() function.