С html type = file, как я могу проверить, чтобы определить, был ли загружен файл (для проверки на стороне клиента с использованием javascript или jquery)
<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>
<script>
if (something )
message = "You did not upload a file...";
</script>