willdk Posted December 3, 2008 Share Posted December 3, 2008 Can php show the lines starting with "a" from my file fellow-students.php ? Quote Link to comment https://forums.phpfreaks.com/topic/135408-solved-show-only-the-lines-starting-with-a-or-b-orpossible/ Share on other sites More sharing options...
rhodesa Posted December 3, 2008 Share Posted December 3, 2008 foreach(file('fellow-students.php') as $line){ if(substr($line,0,1) == 'a') echo $line; } Quote Link to comment https://forums.phpfreaks.com/topic/135408-solved-show-only-the-lines-starting-with-a-or-b-orpossible/#findComment-705295 Share on other sites More sharing options...
willdk Posted December 3, 2008 Author Share Posted December 3, 2008 Rhodesa, thank you for that script. I love it I have two issues a) I want to shuffle the list so people won't see the same lines every day b) Because the list contains duplicate lines I want only unique lines to show I hope the script can be changed to get this result :-\ Quote Link to comment https://forums.phpfreaks.com/topic/135408-solved-show-only-the-lines-starting-with-a-or-b-orpossible/#findComment-705327 Share on other sites More sharing options...
rhodesa Posted December 3, 2008 Share Posted December 3, 2008 $lines = file('fellow-students.php'); //Eliminate duplicates $lines = array_unique($lines); //Filter on 'a' $_lines = array(); foreach($lines as $line){ if(substr($line,0,1) == 'a') $lines[] = $line; } $lines = $_lines; unset($_lines); //Mix it up shuffle($lines); //Show them print implode("\n",$lines); Quote Link to comment https://forums.phpfreaks.com/topic/135408-solved-show-only-the-lines-starting-with-a-or-b-orpossible/#findComment-705347 Share on other sites More sharing options...
willdk Posted December 3, 2008 Author Share Posted December 3, 2008 thx, but I get an empty page ??? Quote Link to comment https://forums.phpfreaks.com/topic/135408-solved-show-only-the-lines-starting-with-a-or-b-orpossible/#findComment-705356 Share on other sites More sharing options...
rhodesa Posted December 3, 2008 Share Posted December 3, 2008 oops...this $lines[] = $line; should be $_lines[] = $line; Quote Link to comment https://forums.phpfreaks.com/topic/135408-solved-show-only-the-lines-starting-with-a-or-b-orpossible/#findComment-705359 Share on other sites More sharing options...
willdk Posted December 3, 2008 Author Share Posted December 3, 2008 yes! working thanks rhodesa for saving me alot of time Quote Link to comment https://forums.phpfreaks.com/topic/135408-solved-show-only-the-lines-starting-with-a-or-b-orpossible/#findComment-705366 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.