Code Library
Home Submit Free Hosting Link To Us Contacts

PHP File read using while

PHP File read using while PHP PHP File read using while Download (.zip)



<?
$i=0;
$a = file("file.txt");
while(count($a) != $i) {
  echo htmlspecialchars($a[$i])."<BR>";
  $i++;
}
?>






Tatet