hello i am looking script image and html or text file upload with option make file name and file deletion
any body can help?

Recommended Answers

All 7 Replies

So google:

  • PHP upload (you will learn how to rename there)
  • PHP delete file

Not that difficult, but at least show some effort and try!

You can find what you need in the documentation.

Here is a small example. I haven't tested out but will give you some good direction.

//Form processing
if(isset($_POST['submit'])){

        $upload_folder = 'uploads/';

        if(isset($_POST['new_file_name'])){
            $file_path = $upload_folder . $_POST['new_file_name'];
        }else{
            $file_path = $upload_folder . basename($_FILES['file']['name']);
        }

        if( move_uploaded_file($_FILES['file']['tmp_name'], $file_path)){
            echo 'File has been uploaded';
        }else{
            echo 'Error, file has not been uploaded';
        }

    }



    //Submit Form

    <form action="<?php $_SERVER['PHP_SELF']; ?>" method="POST">
        <input type="text" name="new_file_name" value="" placeholder="Give new filename (Optional)" />
        <input type="file" name="file" value="" />
        <input type="submit" name="submit" value="Submit File"  />
    </form>

no file in uploads folder

not showing any file uploads folder,
somthing wrong

not showing any file uploads folder,
somthing wrong

So show us some code so we can help you.

Again: Show some effort and try.

maybe because you need an uploads/ directory on your site for the images to upload to?

http://www.amayam.com/uploads/ is a 404.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.