Hi
I am new to PhP and need some help urgently. I am trying to do a demo and this is the problem i ran into.
I have a PhP page that displays some xml kinda data. But I need to dynamically update some values in the xml data, meaning i have to execute another script (ASP script) and the value it returns I need to output as part of this xml data in the .php
test.php
$test_xml='<BUTTON caption=" ';
$test_xml1=;
$test_xml2=' " ';
In this
$test_xml1 should have a data retrieved from executing another script that returns only the values.
$test_xml1 = Inet.execute("http://www.test.com/test.asp");
test.asp would return a value like "test" which i can use as a caption in building my above xml string.
In ASP I would have executed an INET control that return the contents of an URL. does php have an equivalent ?
I would appreciate this help
Thanks