Tools, FAQ, Tutorials:
Moving Uploaded Files to Permanent Directory in PHP
How To Move Uploaded Files To Permanent Directory in PHP?
✍: FYIcenter.com
PHP stores uploaded files in a temporary directory with temporary file names. You must move uploaded files to a permanent directory, if you want to keep them permanently. PHP offers the move_uploaded_file() to help you moving uploaded files. The example script, processing_uploaded_files.php, below shows a good example:
<?php $file = '\fyicenter\images\fyicenter.logo'; print("<pre>\n"); move_uploaded_file($_FILES['fyicenter_logo']['tmp_name'], $file); print("File uploaded: ".$file."\n"); print("</pre>\n"); ?>
Note that you need to change the permanent directory, "\fyicenter\images\", used in this script to something else on your Web server. If your Web server is provided by a Web hosting company, you may need to ask them which directories you can use to store files.
If you copy both scripts, logo_upload.php and processing_uploaded_files.php, to your Web server, you can try them to upload an image file to your Web server.
⇒ Detecting File Uploading Errors in PHP
⇐ Processing Uploaded Files in PHP
2016-10-14, 3070👍, 0💬
Popular Posts:
Where to find tutorials on OpenID? Here is a large collection of tutorials to answer many frequently...
How To Pass Arrays By References? in PHP? Like normal variables, you can pass an array by reference ...
How to pull NVIDIA CUDA Docker Image with the "docker image pull nvidia/cuda" command? If you are ru...
What is EPUB 2.0 Metadata "dc:creator" and "dc:contributor" elements? EPUB 2.0 Metadata "dc:creator"...
What's Wrong with "while ($c=fgetc($f)) {}" in PHP? If you are using "while ($c=fgetc($f)) {}" to lo...