Search results

  1. M

    This PHP script uploads and re-names a file to the uploaders' last name, but

    there is no period before the ext? I am using a php script (shown below) to allow users to upload files to my web server. For some reason, after it renames the file, it removes the period before the extension. What can I add to the code to get it to upload the file with the period intact? <?php...
  2. M

    PHP code: How do i make the php script rename a file upload based on a last...

    ...name form input field? I am currently using the code below to allow users to upload files to my website. How can i change the php script so that it renames the files to the uploaders' last name?? Here is the script i am using now: <?php $target = "uploads/"; $target = $target . basename(...
  3. M

    PHP upload and rename file script. Please help.?

    I need to have a multiple file upload form on my website that asks the uploader their name and then renames the files they upload to their last name. Here is the code i am currently using: The form: ********************************* <html> <body> <form enctype="multipart/form-data"...
  4. M

    How to create a form that allows users to send a message and attach multiple files...

    ...uploads. PHP action? I need to create a form that allows visitors to my website to send me a message AND upload multiple files. I also need the PHP script to rename the uploaded files to reflect the uploader's name. Thanks in advance for any help.
Back
Top