Over the past few months, we have received a lot of requests concerning the revision of our prices.
It’s now done on the batch file prices, with prices reduced by -60% on all our offers !
This offer will remain for life, even on our future services in preparation for file decompilation : PHP 8.0, 8.1, and more.
The Team DeZender
<?php
/**
*
* @ This file is created by deZender.Net
* @ deZender (PHP5 Decoder for ionCube Encoder)
*
* @ Version : 1.1.1.0
* @ Author : DeZender
* @ Release on : 2011.01.04
* @ Official site : http://DeZender.Net
*
*/
function licensing_getlicreturndata($licenseid) {
global $licensing_secret_key;
$result = select_query( 'mod_licensing', '', array( 'id' => $licenseid ) );
$data = mysql_fetch_array( $result );
$serviceid = $data['serviceid'];
$validdomain = $data['validdomain'];
$validip = $data['validip'];
$validdirectory = $data['validdirectory'];
$status = $data['status'];
$result = select_query( 'tblhosting', '', array( 'id' => $serviceid ) );
$data = mysql_fetch_array( $result );
$productid = ltrim( $data['packageid'], '0' );
$nextduedate = $data['nextduedate'];
$regdate = $data['regdate'];
$billingcycle = $data['billingcycle'];
$userid = $data['userid'];
$result = select_query( 'tblproducts', '', array( 'id' => $productid ) );
$data = mysql_fetch_array( $result );
$productname = $data['name'];
$result = select_query( 'tblclients', '', array( 'id' => $userid ) );
$data = mysql_fetch_array( $result );
$firstname = $data['firstname'];
$lastname = $data['lastname'];
$companyname = $data['companyname'];
$email = $data['email'];
$configoptions = '';
$result = full_query( '' . 'SELECT tblproductconfigoptions.optionname,tblproductconfigoptionssub.optionname FROM tblproductconfigoptions,tblproductconfigoptionssub,tblhostingconfigoptions WHERE tblhostingconfigoptions.configid=tblproductconfigoptions.id AND tblhostingconfigoptions.optionid=tblproductconfigoptionssub.id AND tblhostingconfigoptions.relid=\'' . $serviceid . '\'' );
while ($data = mysql_fetch_array( $result )) {
$configoptions .= $data[0] . '=' . $data[1] . '|';
}
$configoptions = substr( $configoptions, 0, 0 - 1 );
$customfields = '';
$result = full_query( '' . 'SELECT tblcustomfields.fieldname,tblcustomfieldsvalues.value FROM tblcustomfields,tblcustomfieldsvalues WHERE tblcustomfields.id=tblcustomfieldsvalues.fieldid AND tblcustomfieldsvalues.relid=\'' . $serviceid . '\'' );
while ($data = mysql_fetch_array( $result )) {
$customfields .= $data[0] . '=' . $data[1] . '|';
}
$customfields = substr( $customfields, 0, 0 - 1 );
echo '' . '
<registeredname>' . $firstname . ' ' . $lastname . '</registeredname>
<companyname>' . $companyname . </companyname>
...............
......
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.