File "jquery_post.php"
Full Path: /home/analogde/www/Jquery/jquery_post.php
File size: 211 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
if($_POST["name"])
{
$name = $_POST["name"];
$email = $_POST["email"];
// Here, you can also perform some database query operations with above values.
echo "Welcome ". $name ."!"; // Success Message
}
?>