File "server.php"

Full Path: /home/analogde/www/Outlook/Fusion/Table/server.php
File size: 227 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

if ($_SERVER['REQUEST_METHOD'] === 'POST') {

    echo json_encode(
        array(
            "status" => 1,
            "message" => "Form submitted",
            "data" => $_POST
        )
    );
}

exit;