Hi,
I try to upload file to the server.
My html is:
<form enctype="multipart/form-data" action="self.php" method="post">
<input name="userfile" type="file">
my php is:
reset($HTTP_POST_VARS);
while (list($name, $value) = each($HTTP_POST_VARS)) {
${$name} = $value;
}
it is working fine under linux but on win2000 I have a probelm to get the data (with IIS & Apache)
Any ideas?
Assaf