Beispiel #1
0
<?php

require '../classes/StreamRepository.php';
header('Content-type: application/json');
echo ")]}'\n";
//if ( isset( $_GET['name'] ) && is_string( $_GET['stream_id'] ) && isset( $_GET['countryCode'] ) && is_string( $_GET['countryCode'] ) ) {
if (isset($_GET['name']) && isset($_GET['stream_id']) && isset($_GET['stream_data'])) {
    StreamRepository::addStream($_GET['name'], $_GET['stream_id'], $_GET['stream_data']);
    echo json_encode(true);
}
Beispiel #2
0
<?php

require '../classes/StreamRepository.php';
header('Content-type: application/json');
//header( 'Content-type: application/x-www-form-urlencoded' );
//var_dump(json_encode($_POST['name']));
$data = file_get_contents("php://input");
$decodedData = json_decode($data);
$name = $decodedData->name;
$stream_id = $decodedData->stream_id;
$stream_data = $decodedData->stream_data;
//var_dump($stream_data);
echo ")]}'\n";
if (isset($name) && isset($stream_id) && isset($stream_data)) {
    StreamRepository::addStream($name, $stream_id, $stream_data);
    echo json_encode(true);
}