Login   Register  
PHP Classes
elePHPant
Icontem

File: acceptgreq.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of PLSCIS PLP  >  Simple PHP Web Chat  >  acceptgreq.php  >  Download  
File: acceptgreq.php
Role: Application script
Content type: text/plain
Description: normal request handler file for accept group request
Class: Simple PHP Web Chat
Chat system with Websockets or AJAX as fallback
Author: By
Last change: changed role and description
Date: 2013-12-08 13:29
Size: 473 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.AcceptRequest.php');
    
$ar_obj = new AcceptRequest();
    
$return_val $ar_obj->acceptGReq($name$grpnm);
}
echo 
$return_val; exit;
?>