Answers for "example of php code with get and post function"

PHP
1

get post data in php javascript

if($json = json_decode(file_get_contents("php://input"), true)) {
    $data = $json;
} else {
    $data = $_POST;
}
Posted by: Guest on June-05-2021
0

php receive post

// Send data trough e.g. AJAX in JavaScript

$.ajax({
    type: "POST",
    url: 'example.php',
    data: { "num1": 1, "num2": 2},
    contentType: "application/json; charset=utf-8",
    dataType: "JSON",
    async: false
})

// You would receive it like this:
  
$num1 = $_POST["num1"];
$num2 = $_POST["num2"];

$sum = $num1 + $num2;
echo $sum;

// Would output: 3
Posted by: Guest on October-01-2020

Code answers related to "example of php code with get and post function"

Browse Popular Code Answers by Language