This code reads a.txt file
<?php
$file_path = 'a.txt';
$file_handle = fopen($file_path, 'r');
$text_data = fread($file_handle, filesize($file_path));
print $text_data;
fclose($file_handle);
?>
I want to upload this text file using the code given below and want to read the uploaded file when I hit submit button. I know there is a problem in this code that's why it is not working. pls help me to do that.
<html>
<body>
<form action="" method="post"
enctype="multipart/form-data">
<label for="file">Filename:</label>
<input type="file" name="file" id="file"><br>
<input type="submit" name="submit" value="Submit">
</form>
</body>
</html>