With a html type=file, how can I tell if file was uploaded. Is there something in the $_POST values to indicate so?
<form action="program" enctype="multipart/form-data" method="post">
<input type="text" name="textline" size="30">
<input type="file" name="datafile">
<input type="submit" value="Send">
</form>