PHP Classes

File: includes/lib/lobby/ajax/removeData.php

Recommend this page to a friend!
  Classes of Subin Siby   Lobby   includes/lib/lobby/ajax/removeData.php   Download  
File: includes/lib/lobby/ajax/removeData.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Lobby
Web OS to install and run Web applications
Author: By
Last change: Lobby 0.6
Date: 7 years ago
Size: 271 bytes
 

Contents

Class file image Download
<?php
require "../../../../load.php";
if( isset(
$_POST['appID']) && isset($_POST['key']) ){
  
$app = $_POST['appID'];
  
$key = $_POST['key'];
  
   if( !
removeData($key, $app) ){
      echo
"bad";
   }else{
      echo
"good";
   }
}else{
   echo
"fieldsMissing";
}
?>