$string Handling - Extreme Nubie
Posted: Thu Oct 02, 2008 1:57 pm
Hello all, forgive me if I don't ask this question correctly. I have been racking my brain trying to figure this out.
I have been able to parse an xml download and put each url string in a variable simply called $url.
It look like this:
$urls = $chart->getElementsByTagName( "url" );
$url = $urls->item(0)->nodeValue;
Each one prints out fine as text. Here is an example.
echo "$url <br>";
http://www.zillow.com/app?chartType=aff ... vice=chart
I can't seem to figure out how to take each string url and call the website to return the small graph.
Any input would be greatly appreciated.
Thanks
Alan
I have been able to parse an xml download and put each url string in a variable simply called $url.
It look like this:
$urls = $chart->getElementsByTagName( "url" );
$url = $urls->item(0)->nodeValue;
Each one prints out fine as text. Here is an example.
echo "$url <br>";
http://www.zillow.com/app?chartType=aff ... vice=chart
I can't seem to figure out how to take each string url and call the website to return the small graph.
Any input would be greatly appreciated.
Thanks
Alan