//------------------------------------------------------------------------------ // 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. //------------------------------------------------------------------------------ // Configure Notifications - Delete // // Filename: ml_set_notifications_delete.htm // // This page is used to delete an existent email notification. // // When a POST is operation result information is retrieved from POST // data and displayed in the Message Box. // // // Input: POST data // emailaddr the email notification address to delete // guid the id that uniquely identifies the email notification to be deleted // // // // Ouput: POST ('form_out') // url original request page // guid notification id // emailaddr email address // alertlevel alert level // enabled notification's status // ischeck keeps track of which checkbox was checked before submit // // // // Change History: // // Date Defect Changed By Description of Change // ---- ------ ---------- --------------------- // 11/02/2005 roomor01 File Created //------------------------------------------------------------------------------ include('main_inc.htm'); include('common_admin_inc.htm'); if($_SERVER['REQUEST_METHOD']=='POST'){ $emailaddr = $_REQUEST['emailaddr']; $guid = $_REQUEST['guid']; $isChecked = $_REQUEST['ischeck']; $message = "Are you sure that you want to remove the email address $emailaddr ?"; } ?>