I thought I understood this but I guess not...
Through a form I want to select a file on my hard drive and upload it to my server.
Here's my code:
$path = "server path/images/";
if ($gif_file != "") {
@copy($gif_file, $path)
or die("Couldn't copy the file.");
}
"gif_file" is the file I selected on my HD
The "images" dir has been chmod to 777
I'm guessing I'm missing an upload component -
Any help ?