I am using the curl[GH] action to send information to store in a database. I need to get the response value back from the server. Right now I am able to get a response back but I need to be able to just get a value for a certain input.
so when I post its is
curl[GH]
Then in the response i recieve either and Error or Success.
When "Success" I see in the debug like this:
which in the XML
I need to return "delivery_id" value from "curl_gh"
How would I do that?
so when I post its is
curl[GH]
name=name
last=lastname
phone=phone
email=email
Then in the response i recieve either and Error or Success.
When "Success" I see in the debug like this:
[curl_gh] =>
Success!
89
100.50
which in the XML
<response>
<status>Success</status>
<lead_id>89</lead_id>
<delivery_id>100.50</delivery_id>
</response>
I need to return "delivery_id" value from "curl_gh"
How would I do that?