PHP Classes

File: rejectgroup.php

Recommend this page to a friend!
  Classes of PLSCIS PLP   Simple PHP Web Chat   rejectgroup.php   Download  
File: rejectgroup.php
Role: Application script
Content type: text/plain
Description: normal request handler file for removing a group from contact list
Class: Simple PHP Web Chat
Chat system with Websockets or AJAX as fallback
Author: By
Last change: changed description
Date: 11 years ago
Size: 478 bytes
 

Contents

Class file image Download
<?php
$grpnm
= (isset($_POST['grpnm']))? $_POST['grpnm'] : '';
$name = (isset($_POST['name']))? $_POST['name'] : '';
$grpnm = preg_replace('/[^A-Za-z0-9]/', '', $grpnm);
$grpnm = trim($grpnm);
$return_val = 'error';
if(
$grpnm != '') {
    include_once(
'common.php');
    include_once(
$site_path.'classes'.DIRECTORY_SEPARATOR.'class.RemoveContacts.php');
   
$rcs_obj = new RemoveContacts();
   
$return_val = $rcs_obj->removeGroup($name, $grpnm);
}
echo
$return_val; exit;
?>