PHP Classes

File: AjaxResponse.php

Recommend this page to a friend!
  Classes of pooya sabramooz   Easy Ajax Builder with PHP   AjaxResponse.php   Download  
File: AjaxResponse.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Easy Ajax Builder with PHP
Generate HTML and JavaScript to send AJAX requests
Author: By
Last change: Update of AjaxResponse.php
Date: 4 years ago
Size: 220 bytes
 

Contents

Class file image Download
<?php

if(isset($_POST["f_name"])) {

    echo
"POST : <br>";
   
var_dump($_POST);

    echo
"GET : <br>";
   
var_dump($_GET);

}

if(isset(
$_GET["getTime"])){

    echo
date("Y/m/d - h:i:s",time());

}