I was wondering if you guys could help me reading between a “[]” in a text file in PHP
the text file is setup like so:
[1] [eating]
[2] [drinking]
[3] [rofling]
[4] [loling]
[5] [what]
[6] [noob]
[7] [ahaha]
I want the script to read through the first “[]” and find numbers greater than 3
So every line with the first “[]” over 3 will be echoed out
So in this text file every “[]” over 3 will be read so this is what it will print:
[4] [loling]
[5] [what]
[6] [noob]
[7] [ahaha]
will be read
Thank fo your help