" disabled="disabled" /></p>
            <p><label>Command : </label> 
                <input name="rr" size="60" class="box" value="" type="text" />
                <input name="domain" value="<?php 
        echo $domain;
        ?>
" type="hidden" /> 
                <input name="command" style="font-weight: bold;" value="Delete" type="submit" /> <small><a href="javascript:PrintId('exampleCommand');">View</a>/<a href="javascript:HideId('exampleCommand');">hide</a> example command</small>
            </p>
        </form>
    </div>
    <?php 
        $r = new Net_DNS2_Resolver(array('nameservers' => array(NS1)));
        // add a authenticate the request
        if (AUTH_SIGO != NULL) {
            $r->signSIG0(AUTH_SIGO_NAME, AUTH_SIGO);
        } else {
            if (AUTH_TSIG != NULL) {
                $r->signTSIG(AUTH_TSIG_NAME, AUTH_TSIG);
            }
        }
        try {
            $result = $r->query($domain, 'AXFR');
        } catch (Net_DNS2_Exception $e) {
            echo '<p class="error">Failed: ' . $e->getMessage() . '</p>';
        }
        // Sort object
        sort($result->answer->name);
        ?>
    <form method="get" action="./dnsupdate2.php" name="DynamicDNSUpdate">
        <table border="1" cellpadding="3" cellspacing="0">