On Tue, August 9, 2005 2:55 pm, Jesús Fernández wrote:
> Hi there,
> i'm a little newbie you know.
> I have a php that returns some xml, and i want to parse that xml through
> php. the xml returned depends on the variable passed thru the url. what i
> need is to get the output of that php file and store it in a string. i
> have
> tried everything i have though, readfile, include, file_get_contents even
> eval. also i have tried with ob_start and so. but no luck.

Try this:

file_get_contents("http://example.com/yourfile.xml";);

That will get you the exact same thing your browser would show you.

-- 
Like Music?
http://l-i-e.com/artists.htm

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to