<?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"); ?>