Is it possible with PHP script to have the script download a file on a remote server to my web server?
I have my own webserver and domain. I want to put a php script on
Yes, with file_get_contents(), fgets(), or readfile(), depending on your server configuration.
file_get_contents()
fgets()
readfile()
Create a file locally and dump the data from any of those functions, into your new local file.