File "submission.php"
Full Path: /home/analogde/www/Outlook/Fusion/Jquery/submission.php
File size: 283 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/*
* Write your logic to manage the data
* like storing data in database
*/
// POST Data
$data['name'] = $_POST['firstName'] . " " . $_POST['lastName'];
$data['email'] = $_POST['email'];
$data['message'] = $_POST['message'];
echo json_encode($data);
exit;
?>