bilis_money Posted July 26, 2007 Share Posted July 26, 2007 Yo! This one is easy, i want to count the total row of a flat file. Let say i have a file called 'myfile.txt' now inside that text file it has text content rows like below, 1. banana //first row 2. orange 3. papaya 4. grapes 5. lemon //last row now how do i count the total row of this text file and display the result? I think i done this before i just lost the script tho. thanks in advance. Quote Link to comment Share on other sites More sharing options...
Aureole Posted July 26, 2007 Share Posted July 26, 2007 I don't know to be honest, I have something similar which shows a random line from a text file each time... <?php $textfile ="something.txt"; $items = file("$textfile"); $item = rand(0, sizeof($items)-1); echo $items[$item]; ?> Perhaps that could help you work out what to do in some way, if it doesn't then sorry. Quote Link to comment Share on other sites More sharing options...
bilis_money Posted July 26, 2007 Author Share Posted July 26, 2007 here is my answer to my own question echo count(file('filename.txt')); problem solved. Quote Link to comment Share on other sites More sharing options...
Aureole Posted July 26, 2007 Share Posted July 26, 2007 Well I'm glad you worked it out. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.