//------------------------------------------------------------------------------ // Licensed Materials - Property of IBM // (c) Copyright IBM Corporation 2001,2002 All Rights Reserved. // US Government Users Restricted Rights - Use, duplication or disclosure // restricted by GSA ADP Schedule Contract with IBM Corp. //------------------------------------------------------------------------------ // Feature Licenses Page - Background prosses // // Filename: ml_set_licenses_background_process.htm // // This file prosses the data submitted by the Feature Licenses Page. // // When POST data is recieved, operation result information is retrieved // from the POST data and displayed in the Message Box. // // // Input: POST data // url original request page // licensekey license key to activate // // // Ouput: POST ('form_out') // url original request page // errorCode result of operation // returnMessage text information about the operation results // // // Change History: // // Date Defect Changed By Description of Change // ---- ------ ---------- --------------------- // 12/05/2005 roomor01 File Created //------------------------------------------------------------------------------ include('user_inc.htm'); sleep(5); if($_SERVER[REQUEST_METHOD]=='POST') { $url = $_REQUEST['url']; $licenseKey = $_REQUEST['licensekey']; set_licensed_feature($user,$licenseKey); $returnMessage = "The feature license key has been successfully activated."; } ?>