1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12:
<?php $file=fopen("PHP.txt","r")or exit("Can't open"); while(!feof($file)){ $string=fgets($file) list($st)=explode("&%&",$string); echo " $st <br>"; } fclose($file); ?>