PHP is a server scripting language, and a powerful tool for making dynamic and interactive Web pages.
PHP is a widely-used, free, and efficient alternative to competitors such as Microsoft's ASP.
PHP Syntax
<?php
echo "My first PHP script!";
?>
Receive JSON POST with PHP
Use$HTTP_RAW_POST_DATAinstead of
$_POST. It will give you POST data as is. You will be able to decode it using
json_decode()later.