I am using this code copied from w3cschools. It works on loaclhost xampp but not working on live server. I am getting blank page on live server. PHP code is
<?php
$myfile = fopen("products.txt", "r") or die("Unable to open file!");
echo fread($myfile,filesize("products.txt"));
fclose($myfile);
?>