I am using PHP 4.3.1 on Windows 2000 with Apache 1.3.20.
If I try to upload a file with move_uploaded_file() funtion it gives me an error like that: "failed to create stream: HTTP wrapper does not support writeable connections".
The entire line is:
move_uploaded_file($uploadfile, "http://localhost/Img/test.gif");
But if I use the copy function like this:
copy($uploadfile, "c:/wwwroot/Img/test.gif") it realy works fine.
Can someone tell me what is the problem?