the form:
<form name="form1" method="post" action="../db/upload.php?Action=upload" enctype="multipart/form-data">
<input type="file" name="file"><br>
<input type="submit" name="Submit" value="Submit">
</form>
the code
if ($file != "")
{
}
else
{
echo "no file";
}
it always returns no file
also tried debugging this way:
print_r($HTTP_POST_FILES);
print "<br>";
but prints nothing out as a result ...
ITS driving me crazt now, been trying without success for a week
