You Are Here: Home »   Code Monday March 15th 2010

Code Library - php

Lines In A File - (1222 views)


<?

//specify the filename
$filename "myfile.txt";
  
//do the count
$lines    file($filename);
$count    count($lines);

//show the result
echo("There are $count lines in the file");

?>