How Do You Upload The File In Particular Domain Using Php Code..?
There are several steps involved. You need to create an html form and some php code to both, handle the file for upload and placing the file in a directory for download. The best way to understand how to do this is to follow an online tutorial such as this: http://www.w3schools.com/PHP/php_file_upload.asp Keep in mind, uploading files to a server using php can be risky because the server can execute code files once they are uploaded and create security holes. Also, depending on your webserver configuration you might not be allowed to upload certain types of files or be restrained to upload files based on their sizes. Also you need to have FTP or file access to your webserver in order to upload the php code .