//------------------------------------------------------------------------------ // 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. //------------------------------------------------------------------------------ // Contact Information // // Filename: ml_set_contact_info.htm // // This page displays the current contact information settings, if any, and alowes the user to set/change the // contact information. // // When a POST is operation result information is retrieved from POST // data and displayed in the Message Box. // // // Input: POST data // errorCode result of operation // Message message flag = message in POST data // returnMessage text information about the operation results // // Ouput: POST ('form_out') // url original request page // fname fname text field input // lname lname text field input // company company text field input // sysdesc sysdesc text field input // email email text field input // phone phone text field input // // // Change History: // // Date Defect Changed By Description of Change // ---- ------ ---------- --------------------- // 11/28/2005 roomor01 File Created // 06/07/2006 rwinston fixed cmvc d828 //------------------------------------------------------------------------------ include('common_admin_inc.htm'); include('main_inc.htm'); $displayMessage = 0; $contact_info = get_contact_info($user); //list($phone1,$phone2, $phone3) = split('[-]', $contact_info->phone); //verify if the form was submited if($_SERVER[REQUEST_METHOD]=='POST'){ $displayMessage= $_POST['Message']; $errorCode = $_POST['errorCode']; $returnMessage = $_POST['returnMessage']; } ?>