<?php $myfile = "./test.txt"; $openfile = fopen ($myfile, "r") or die ("Couldn *** open the file"); fseek ($openfile, 8); $chunk = fgetc ($openfile); echo $chunk; ?>