I am working on a project site for my mother. Where people can get plants, etc. identified. In order for the users to be able to interact with the site I am working on a "back end" where there is a
1) login/register process. That allows the user to upload images for ID purposes. Allow the user to comment on photos (guest posting not an option to help prevent spam).
Upon registering the script creates a /~user/username/ folder and contains the user_panel.php page.
The sample login scripts I have looked at online are stated as not being secure. I am not including "personal info" like credit card numbers, etc. So security is not that big an issue, just need the info so it's privatised and not open to MySQL injections, etc.
2) Image Uploads - The plan is to have the upload script on the user's page, so upon upload the photo(s) go into the respective /~user/username/images/ folder based on the login process.
The sample upload script I found, is fairly easy to modify, but I need assistance on modifying it even more (i.e. file type limits, and placement of the photos, and renames the files to be lowercase on the server).
The login script I am using as a base:
http://www.dreamincode.net/forums/to...ript-with-php/
And the upload script:
http://www.htmlgoodies.com/beyond/ph...ding-Files.htm
These features are the bare minimum. There are aspects that will get discussed later. Thanks