PHP Classes

File: acceptcreq.php

Recommend this page to a friend!
  Classes of PLSCIS PLP   Simple PHP Web Chat   acceptcreq.php   Download  
File: acceptcreq.php
Role: Application script
Content type: text/plain
Description: normal request handler file for accept contact request
Class: Simple PHP Web Chat
Chat system with Websockets or AJAX as fallback
Author: By
Last change: changed role and description
Date: 10 years ago
Size: 451 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.AcceptRequest.php');
   
$ar_obj = new AcceptRequest();
   
$return_val = $ar_obj->acceptCReq($name, $cnm);
}
echo
$return_val; exit;
?>