b0y-101 Mini Shell


Current Path : E:/www/b-group.old/spfin/QRTRAN/report/
File Upload :
Current File : E:/www/b-group.old/spfin/QRTRAN/report/test1.php

<!DOCTYPE html>
<html>
  
<head>
    <title>Read Text File</title>
</head>
  
<body>
    <input type="file" name="inputfile"
            id="inputfile">
    <br>
   
    <pre id="output"></pre>
      
    <script type="text/javascript">
        document.getElementById('inputfile')
            .addEventListener('change', function() {
              
            var fr=new FileReader();
            fr.onload=function(){
                document.getElementById('output')
                        .textContent=fr.result;
            }
              
            fr.readAsText(this.files[0]);
        })
    </script>
</body>
  
</html>

Copyright © 2019 by b0y-101