thanks everyone, the problem was the url i needed to use. now the problem is
solved :)
--
"El único error real es aquel en el que no hemos aprendido nada."
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
* Jesús Fernández <[EMAIL PROTECTED]>:
> thanks, it works, but that returns the php code.
> what i actually need is the output of that php code evaluated.
So eval() the string...
--
Matthew Weier O'Phinney
Zend Certified Engineer
http://weierophinney.net/matthew/
--
PHP General Mailing List (h
well, i found a little problem with this.
when $url looks like "http://myhosting/xml.php"; and i upload it to my
hosting, it times out before getting the content.
that php needs includes and when i try $url="/dir/xml.php" it gives me a not
found error. the file it doesnt find is one of those i
Your $url variable's content like what?
So, if you using like ftp://foo.bar it's the generally normal that
you see the codes.
If not, would you like to give me the $url's content?
(Sorry for my bad English)
Jesús Fernández <[EMAIL PROTECTED]> writes:
> yes, the remote machine runs php (its
yes, the remote machine runs php (its my hosting's server)
--
"El único error real es aquel en el que no hemos aprendido nada."
Ok,
Has the remote machine configured to run the php? So, the remote
machine is your $url variable's host.
Or, you may try browse the URL via any browser (etc; IE, Firefox). If
you see the PHP codes, the remote machine has not been configured to
run PHP.
Jesús Fernández <[EMAIL PROTECTED]> writ
thanks, it works, but that returns the php code.
what i actually need is the output of that php code evaluated.
--
"El único error real es aquel en el que no hemos aprendido nada."
Hi,
You may make it with fopen() like that;
$fd = fopen($url, "r");
$returnString = ""
while (!feof($fd)) {
$returnString .= fgets($fd);
}
fclose($fd);
Jesús Fernández <[EMAIL PROTECTED]> writes:
> Hi there,
> i'm a little newbie you know.
> I have a php that returns some xml, and i wa
9 matches
Mail list logo