I've a scraper script:
foreach($html->find('td.Live') as $e)
echo $e->plaintext . '<br>';
The result will look like this:
name 1 status <br>
And I really need to turn the result into 2 arrays like:
name_array = (name 1, name 2, name 3, name 4)
status_array = (status, status, status, status)
How can I do that?