Hi all,
I'm currently working on an extractor script.
I'm wanting to extract the movie titles name, ie. the red text "& 1 MIXTAPE - VOLUME 5" and continue to get the rest of the titles.
This is what i have so far:
$data = fopen("http://www.sanity.com.au/browse.asp?intParentID=105&intChildID=&intChar=1&intSortBy=1", "r");
$go = fread($data,10000);
$block1 = "<TITLE>";
$block2 = "</TITLE>";
//opens the page and reads the first 10000 characters
$title = eregi("$block1(.*)$block2", $go, $gotcha);
$contents = $gotcha[1];
fclose($data);
print "$contents"
This successfully extracts the <TITLE> of the page but how can i get it to start extracting the movie titles?
Any ideas,
Cheers,
micmac