Here is the raw array:
Here is the text:


Here is the salient PHP code that generated the above:


1   <?php
2   $Text=file('TestText.txt');
3   echo 'Here is the raw array: ';
4   print_r($Text);
5   echo '<br />Here is the text: ';
6   echo $Text[0];
7-20 - - - code to generate this code list - - -
21 ?>