$fileName | ");
$lineIn = fgets($fp); // primer read
while (!feof($fp)) {
$id = substr($lineIn,0,5); // extract fields
$name = substr($lineIn,5,25);
$group = substr($lineIn,30,11);
$price = substr($lineIn,41,5);
$price = number_format($price,2);
print("$id | $name | $group | ".
"$price |
");
$lineIn = fgets($fp); // next read
}
print("");
fclose($fp);
?>