No, dont turn the register_globals on. Just put this in the form:
<?php
if ($_GET['imageName'])
$imageName=$_GET['imageName'];
else
$imageName=$_POST['imageName'];
?>
<FORM action="upload.php" encType="multipart/form-data" method="post" name="sendform">
<input type="hidden" name="imageName" value="<?=$imageName;?>">
<INPUT name=MAX_FILE_SIZE type=hidden value=200000>
<INPUT maxLength=128 name=image type=file ACCEPT="image/jpg">
<INPUT name=Submit type=submit value=Submit>
<INPUT name=Reset type=reset value=Reset>
</FORM>
Theres the if sentence because first when u get to the site its in get method. When u submit the form its in post method.
You could also put the $imageName in the action so you wouldnt have to use that if.
<FORM action="upload.php?imageName=<?=$_GET['imageName'];?>" encType="multipart/form-data" method="post" name="sendform">
PS. I read your answer after I posted this. This script still works for you