Processing a list of books
<?php
$fh = fopen('books.txt','r') or die("can't open: $php_errormsg");
while (! feof($fh)) {
$s = rtrim(fgets($fh));
list($title,$author,$publication_year) = explode('|',$s);
}
fclose($fh) or die("can't close: $php_errormsg");
?>
Related examples in the same category