File "envoi_json03.php"

Full Path: /home/analogde/www/FormData/Fusion/Picker/envoi_json03.php
File size: 432 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

	$str_json = file_get_contents('php://input'); //($_POST doesn't work here)

	if (file_put_contents("data.json", $str_json))
		echo "JSON file created successfully...";
	else 
		echo "Oops! Error creating json file...";
	
	
	/*for ($i = 0; $i < count($response); $i++) 
	{
		echo $response[$i][0] ." ****** " .$response[$i][1] ;
		echo "<br>";
	}*/
	
	//header('Location: insert_db05.php');
  //exit();

?>