Hi,
Is possible to upload a file to a server without a form?
my page receives as parameter the path of file in the user computer. so i want to send this file to my server, but i don´t want to force the user to browse the file and them click OK and ... i want to send the file directly...
i tried with copy but no success..
if anyone have a clue would be great... :o)
[]´s
Ruddy
/I TRIED THIS WAY/
$file = "c:\windows\files\teste.txt";
$dest = "/Files/";
copy ($file, $dest);