sametch
02-26-2003, 02:50 PM
I am trying to pass a file from a form to another php page that will upload it.
Each time the variable passed end up being null.
The settings in my form are:
<form name="form1" method="post" action="upload.php" enctype="multipart/form-data">
<input type="file" name="pageimage">
<input type="submit" name="Submit" value="Submit">
</form>
The form works fine, I can browse to a file on my local machine and its filename/path are added in the text box.
But when I check the value of the variable $pageimage on the "upload.php" page it is NULL.
I am checking it thus:
$pageimage = $HTTP_POST_VARS['pageimage'];
echo "Image type is = ".gettype($pageimage);
Does anyone know why it may not be passing the value across?
:confused:
Each time the variable passed end up being null.
The settings in my form are:
<form name="form1" method="post" action="upload.php" enctype="multipart/form-data">
<input type="file" name="pageimage">
<input type="submit" name="Submit" value="Submit">
</form>
The form works fine, I can browse to a file on my local machine and its filename/path are added in the text box.
But when I check the value of the variable $pageimage on the "upload.php" page it is NULL.
I am checking it thus:
$pageimage = $HTTP_POST_VARS['pageimage'];
echo "Image type is = ".gettype($pageimage);
Does anyone know why it may not be passing the value across?
:confused: