how do i get the php to reconize that there is a file being uploaded to it by the vb webclient
current php code is this
if(count($_FILES)==1) {
//move_uploaded_file
( $_FILES[0]["tmp_name"] , "./imgs/curdesktop.png" );
file_put_contents("./nin.txt",print_r($_FILES));
}
all it does right now is check the FILE array and supposed to print the attributes out into a text file. however the vb program says that the file is uploaded with no errors and the $_FILES array returns 1 which is invalid for that array