Alternc  3.2
Alternc logiel libre pour l'hébergement
 All Data Structures Namespaces Files Functions Variables Pages
dom_dnsdump.php
Go to the documentation of this file.
1 <?php
2 require_once("../class/config.php");
3 
4 $fields = array (
5  "domain" => array ("get", "string", ""),
6 );
8 
9 if (empty($domain)) die(_("Error: no domain"));
10 
11 foreach ($dom->dump_axfr($domain) as $o ) {
12  echo "$o\n";
13 }
14 
15 ?>