Advertisement

07.17.2008 at 11:57AM PDT, ID: 23574493
[x]
Attachment Details

I'm having some trouble with SimpleXML XPath...???

Asked by angelleye in PHP Scripting Language

Tags: PHP

I'm working with the following XML: http://sandbox.angelleye.com/client_sites/dealexpress/DE20/temp/test.xml

This particular XML only has a single <BestOffer> node but there could be many within the <BestOfferArray> node.

I need to select the Price value from the BestOffer node where Status = Accepted.

When I write $Ack to the screen I get Success as expected.

I've used this same XPath in an ASP script that I've done that I'm converting to PHP and I can't figure out what the difference is.  I'm just getting nothing back, no errors or anything.  

Any information would be greatly appreciated.  Thanks!Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
$GetBestOffersSimpleXML = simplexml_load_string($GetBestOffersResponse);
 
$Ack = $GetBestOffersSimpleXML -> Ack;
 
if($Ack == "Success" || $Ack == "Warning")
{
	$AcceptedOfferPrice = $GetBestOffersSimpleXML -> xpath("BestOfferArray/BestOffer/Price[../Status='Accepted']");
	echo $AcceptedOfferPrice;
	exit();
}
[+][-]07.17.2008 at 12:48PM PDT, ID: 22029447

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.17.2008 at 01:48PM PDT, ID: 22030130

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.17.2008 at 01:54PM PDT, ID: 22030214

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zone: PHP Scripting Language
Tags: PHP
Sign Up Now!
Solution Provided By: hernst42
Participating Experts: 1
Solution Grade: A
 
 
[+][-]07.17.2008 at 02:33PM PDT, ID: 22030615

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07.17.2008 at 02:35PM PDT, ID: 22030635

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.17.2008 at 02:38PM PDT, ID: 22030660

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628