Hi,
I have started using file_get_contents and regex, and after struggling have got it working. The issue I have is that when I print_r($match[1]); I get the results I want, but I do not know how to then convert this into something that I can store in a MySql database, as if it stores it just as 'Array'.
Here is my code with the specifics taken out, although I imagine this is just something straightforward.
$data = str_replace("\n", '', file_get_contents(''));
preg_match_all("",$data,$match);
$result = $match[1];
print_r($result);
Thanks,