Search
 
SCRIPT & CODE EXAMPLE
 

PHP

post json php

$data = json_decode(file_get_contents('php://input'), true);
print_r($data);
echo $data["operacion"];
Comment

php get post json data

$data = json_decode(file_get_contents('php://input'), true);
Comment

php send json post

$url = "your url";    
$content = json_encode("your data to be sent");

$curl = curl_init($url);
curl_setopt($curl, CURLOPT_HEADER, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_HTTPHEADER,
        array("Content-type: application/json"));
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, $content);

$json_response = curl_exec($curl);

$status = curl_getinfo($curl, CURLINFO_HTTP_CODE);

if ( $status != 201 ) {
    die("Error: call to URL $url failed with status $status, response $json_response, curl_error " . curl_error($curl) . ", curl_errno " . curl_errno($curl));
}


curl_close($curl);

$response = json_decode($json_response, true);
Comment

json get/post request in php

<?php
  $json = '{
      "title": "PHP",
      "site": "GeeksforGeeks"
  }';
  $data = json_decode($json);
  echo $data->title;
  echo "
";
  echo $data->site;
?>
Comment

PREVIOUS NEXT
Code Example
Php :: php array filter specific keys 
Php :: mysql get number of rows php 
Php :: laravel echo html 
Php :: check if post exists by id wordpress 
Php :: drupal 7 hook_node_update 
Php :: qr code generator php 
Php :: destroy multiple sessions in laravel 
Php :: post loop 
Php :: if function not exists php 
Php :: stripslashes 
Php :: Number of week days between two dates in php 
Php :: laravel update email unique 
Php :: https://www.60d48b1061adf.site123/wp-login.php 
Php :: i+= in php 
Php :: maatwebsite/excel package 5.2 laravel 
Php :: cara membuat looping table dengan php 
Php :: php include external directory path 
Php :: give @s potion off weekness 
Php :: read xml file in php wordpress 
Php :: laravel vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:36 
Php :: get the current datetime in php when button is clicked 
Php :: laravel has many 
Php :: use smarty variable in php 
Php :: symfony messenger 
Php :: how to get the root domain in laravel 
Php :: php image rotate upload 
Php :: function default value 
Php :: php object to string 
Php :: php command get ini params 
Php :: pdo error message 
ADD CONTENT
Topic
Content
Source link
Name
6+6 =