Thanks bradgrafelman and Ashley Sheridan, the highlighting tool is a neat deivce.
After removing the extra ';' in the main script it was rerun in unix and threw the same unexpected ';' error on the same line, which is ...
fputs($fp1, "L.27 _loopX3a.php \n"); in the following snippet ...
<?PHP //UnexpectedTest.php
error_reporting(E_ALL ^ E_NOTICE);
$fp1 = fopen('SmpSbxLog.txt', "a");
fputs($fp1, "L.27 _loopX3a.php \n");
$time_stamp = date('m/d/y h:i:s a');
?>
Curiously, running this snippet in unix throws ...
'Could not open input file: UnexpedtedTest.php.' I don't get it.
u-sit