Login   Register  
PHP Classes
elePHPant
Icontem

File: example.setDomainHosts.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Bakr Alsharif  >  Enom API  >  example.setDomainHosts.php  >  Download  
File: example.setDomainHosts.php
Role: Example script
Content type: text/plain
Description: Set Domain Hosts (Records)
Class: Enom API
Manipulate domain registration using the Enom API
Author: By
Last change:
Date: 2006-06-29 06:14
Size: 1,633 bytes
 

Contents

Class file image Download
<?php
//
// +-----------------------------------+
// |          Enom API v 1.0           |
// |      http://www.SysTurn.com       |
// +-----------------------------------+
//
//
//   This program is free software; you can redistribute it and/or modify
//   it under the terms of the ISLAMIC RULES and GNU Lesser General Public
//   License either version 2, or (at your option) any later version.
//
//   ISLAMIC RULES should be followed and respected if they differ
//   than terms of the GNU LESSER GENERAL PUBLIC LICENSE
//
//   This program is distributed in the hope that it will be useful,
//   but WITHOUT ANY WARRANTY; without even the implied warranty of
//   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
//   GNU General Public License for more details.
//
//   You should have received a copy of the license with this software;
//   If not, please contact support @ S y s T u r n .com to receive a copy.
//
require_once('class.EnomService.php');

$enom = new EnomService('username''********'falsetrue);
$enom->debug true;

$hosts = array();
$hosts[] = array('name'=>'@''type'=>'A''address'=>'66.150.5.189');
$hosts[] = array('name'=>'photos''type'=>'CNAME''address'=>'photos.msn.com');
$hosts[] = array('name'=>'yahoo''type'=>'URL''address'=>'204.71.200.72');
$hosts[] = array('name'=>'msn''type'=>'FRAME''address'=>'http://www.msn.com');
$hosts[] = array('name'=>'mail''type'=>'MX''address'=>'mail.yahoo.com''pref'=>'10');
$result $enom->setDomainHosts('systurn.com'$hosts);

echo 
'<pre>';
var_dump($result);
echo 
'</pre>';

?>