hello i am looking script image and html or text file upload with option make file name and file deletion
any body can help?
kaakka 0 Newbie Poster
Recommended Answers
Jump to PostYou 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)){ …
Jump to Postnot showing any file uploads folder,
somthing wrongSo show us some code so we can help you.
Again: Show some effort and try.
All 7 Replies
mattster 195 Practically a Master Poster Featured Poster
gabrielcastillo 40 Web Developer
kaakka 0 Newbie Poster
kaakka 0 Newbie Poster
mattster 195 Practically a Master Poster Featured Poster
kaakka 0 Newbie Poster
mattster 195 Practically a Master Poster Featured Poster
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.