file(string filename [, int flags [, resource context]])
Reads entire file into an array
This what I got from a book 🙂
Shoot me if I know what to do 🙂
I have a file wich is loaded with results from a form and now I need to load it to an array and sort it.
I tried this but it only echos array array array and so on 🙁
help? 🙂
$england = file (englandhome.dat);
for ($counter = 0; $counter < 10; $counter++)
{
echo "<br>$england";
}