You see, PHP does more than give you a $_REQUEST array. When there are files
involved, it gives you a $_FILES array. And that array, just like $_REQUEST, is keyed
to your field. So $_FILES[$image_fieldname] is associated with the image uploaded
(hopefully) from your form. (Remember, you defined $image_fieldname nearer the
top of create_user.php.)