//------------------------------------------------------------------------------ // 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. //------------------------------------------------------------------------------ // Inventory Library // // Filename: ml_inventory_library.htm // // // Input: POST data // url original request page // errorCode result of operation // returnMessage text information about the operation results // // // Ouput: POST ('form_out') // url original request page // // // Change History: // // Date Defect Changed By Description of Change // ---- ------ ---------- --------------------- // 06/14/2006 rwinston File Created //------------------------------------------------------------------------------ include_once('user_inc.htm'); include('utils_inc.htm'); // intitalize variables $errorCode = 0; $displayMessage = 0; // if this is a post, then it is the return from an operation // retrieve the return information if ($_SERVER['REQUEST_METHOD'] == "POST") { $errorCode = $_REQUEST["errorCode"]; $displayMessage = $_REQUEST["Message"]; $returnMessage = $_REQUEST["returnMessage"]; } ?>