PHP Classes

File: test.php

Recommend this page to a friend!
  Classes of Arash Hemmat   WHM XML API   test.php   Download  
File: test.php
Role: Example script
Content type: text/plain
Description: example
Class: WHM XML API
Manipulate Cpanel/WHM accounts using its XML API
Author: By
Last change:
Date: 16 years ago
Size: 916 bytes
 

Contents

Class file image Download
<?php
//include the whm class file.
require_once('whm.php');

// create a new instance of whm class
$test= new whm;

//initilize the whm object
//you can use you hostname or an IP below
//you can find you whm hash when yopu login into your whm account clickong on "Setup Remote Access Key" link.
$test->init('whmhost.com','whm_username','whm_hash');

//This will output the cpanel/whm version.
$version= $test->version();
echo
"Cpanel/whm version is: $version <br>";

//This way you can create an account.
//This function will return a result set as an array in success and will return false on fail.
$result=$test->createAccount('testdomain.com','testuser','testpassword123','package_test');

//check if creating account was successfull or not.
if($result)
{
   
//print the result set
   
print_r($result);
}
else
{
   
//You can get the errors like this.
   
print_r($test->errors);
}

?>