SOAP XML til PHP variabel
Request:<soapenv:Envelope xmlns:soapenv=http://schemas.xmlsoap.org/soap/envelope/
xmlns:par="http://www.side.dk">
<soapenv:Header/>
<soapenv:Body>
<par:showGeneralInfo/>
</soapenv:Body>
</soapenv:Envelope>
Response:
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
<S:Body>
<ns2:showGeneralInfoResponse ...>
<GeneralInfo>
<info>
<infoText>Alt er fint i dag.</infoText>
<infoType>INFO</infoType>
</info>
</GeneralInfo>
</ns2:showGeneralInfoResponse>
</S:Body>
</S:Envelope>
Hvordan får jeg lavet <infoText> om til fx $infotext, så jeg kan lægge værdien jeg får retur ind i min database ?
