PHP mit XML via cURL

  • Hallo, ich habe folgendes vor:
    1. eine php Variable in ein XML string setzen und dies an ein Domain Provider senden.
    2. Die Rückantwort des Providers per requestCurl erhalten.
    3. Bestimmte Teile der Antwort in eine Variable setzen.


    1 und 2 habe ich geschafft aber das dritte klappt nicht, hoffe mir kann jemand helfen...

    <?php
    $code = "0105";
    $xml ="
    <request>
    <auth>
    <user>user</user>
    <password>pw</password>
    <context>nummer</context>
    </auth>
    <task>
    <code>$code</code>
    <domain>
    <name>domain.de</name>
    </domain>
    </task>
    </request>
    ";

    header( 'Content-Type: text/xml' );
    echo requestCurl( $xml );
    function requestCurl( $data ) {
    $ch = curl_init( "https://gateway.autodns.com" );
    curl_setopt ( $ch, CURLOPT_POSTFIELDS, $data );
    curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, 1 );
    curl_setopt ( $ch, CURLOPT_SSL_VERIFYPEER, FALSE );
    if( !$data = curl_exec( $ch )) {
    echo 'Curl execution error.', curl_error( $ch ) ."\n";
    return FALSE;
    }
    curl_close( $ch );
    return $data;
    }
    ?>


    auch gern über ICQ 614947974