Hi, I'm not a PHP programmer at all and I've been looking for an answer for my problem :
I have an HTML file from which I want to extract part of the info :
Here is the link to the file : http://qcfl.ehmqc.com/includes/rosters/scoring.html
I'd like to extract only the first 5 lines of the first table (actually columns #2, 3 4, 5, 6 & 7 of the first 5 lines).
I know it's possible to extract the whole file into an array with :
$information = file('http://qcfl.ehmqc.com/include/rosters/scoring.html');
foreach ($information as $ligne) {
echo $ligne;
But I don't know how to select part of the file at all ... thanks in advance !