Максимум что можно получить с помощью JS:
<form action="" method="post" enctype="multipart/form-data">
<input type="file" name="input" />
</form>
<script type="text/javascript">
window.onload = function(){
document.getElementsByName('input')[0].onchange = function(){
var file = this.files[0];
alert('fileSize: '+file.fileSize+'\n\nfileName: '+file.fileName+'\n\nContent: \n'+file.getAsBinary());
};
};
</script>