I really need some help here...
here is what i have now:
fputs($fp, $data);
while (!feof($fp))
{
$buffer = fgets($fp, 2048);
preg_match("/Location: (.*?)&start/",$buffer,$matches);
//print_r($matches);
$url = $matches[1];
echo "url - $url ";
}
fclose ($fp);
}
?>
Here is what I am getting:
url - url - url - url - url - url - url - url - url - url - url -http://www.somewhere.com url - url - url - url - url - url -
The only thing I want, it to only display the 'url - http://www.somewhere.com' Not all that other stuff.
thanks