Okay let's say I open the url, http://www.nothing.com/ using php's fopen function. then I do this,
<?php
$S = sss
$url = "http://www.nothing.com/" . $S . "&ql=1";
$open = fopen($url,"r");
while(! feof($open))
{
echo fgets($open). "<br />";
}
?>
That above returns all of the page I'm looking at. My goal is to have some sort of php function to sort of collect specific information from the page for example: I want to crawl the page and then find where it says name: next, I want to see what is next to name example: Name: Bob York Then I want to index Bob York into a mysql database? But, how can I do this?