Title: PHP: Upload Files to the server Post by: Khushi on January 03, 2007, 12:26:26 AM With PHP, it is simple to upload any file to your server.
uploader.php Code: <?php The form used to apply this uploading: Code: <form enctype="multipart/form-data" action="uploader.php" method="POST"> I suggest implementing a password (php) protection on this page to ensure noone other than the administrator can upload files. Missuse of uploading can surpass a server's space and cause fines or bans of site owners. So be careful |