Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~341 People Reached
Favorite Forums
Favorite Tags
php x 7
Member Avatar for geny

Hi, There is this link -> [url]http://data.giub.uni-bonn.de/openrouteservice/php/DetermineRoute_rajan.php?Start=7.0892567,50.7265543&Via=&End=7.0986258,50.7323634&lang=en&distunit=YD&routepref=Fastest&avoidAreas=&useTMC=false&noMotorways=false&noTollways=false&instructions=true[/url] ! where I need to extract text, perhaps -> <xls:Instruction>[B]Drive half left on Kaiserstraße[/B]</xls:Instruction> <xls:distance value="[B]284[/B]" uom="YD"/> (bold text). On using something like this : [code] $url="url_just_shown_above"; $output = file_get_contents($url); $xml = simplexml_load_string($output); echo $xml->xls:RouteInstruction->xls:Instruction."<br />"; [/code] I am getting error -> Parse …

Member Avatar for digital-ether
0
106
Member Avatar for geny

[Urgent] Hi , I am trying to extract text from a website using file_get_contents('url'),no issues with that. Thing is that I am not getting expected output of it..And the reason I see is that ,if the url is generally opened,first home page flashes and while the page is still loading …

Member Avatar for Atli
0
131
Member Avatar for geny

Hi, There is this website -> [url]http://www.openrouteservice.org/[/url] ,where on querying and using this url-> [url]http://data.giub.uni-bonn.de/openrouteservice/index.php?start=7.0892567,50.7265543&end=7.0986258,50.7323634&pref=Fastest&lang=de[/url] ! I get Route Summary with Route instructions.Now,I want to grab it.How is that possible using PHP? To explain bit more,I have till now,created the required URL using text boxes and concatenating values and tried …

Member Avatar for geny
0
104