PHP Classes

File: removecon.php

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

Contents

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