Okay, here's the scenario.
What I'm trying to create is a form that will allow me to specify the URL of a remotely hosted image.
Once I hit submit, the code should grab that image (I'm assuming through fopen()), and somehow copy it to my server.
I can upload files to my server, but because I'm using php 4.0.something, I can't use copy and use the remote file as the source. Is there any way that I can work around this, and either use fopen or fputs to write the file to my server, after it's been opened from another server?
I don't necessarily care how elegant the code, but it's driving me nuts that I can't figure out a process that will work.
-9mm-