The initial PHP page uses this code to POST the file:
Code: Select all
<form method="post" enctype='multipart/form-data' action="upload.php">
<input type=file name=thefile>
<input type="submit" VALUE="Upload" name="Upload">
</form>Further, $_FILES['thefile']['tmp_name'] contains /tmp/phpRCaphU. The problem I have is that there is no such file as /tmp/phpRCaphU.
Can any suggest where I may find the POSTed file?