I get the following json link:
http://localhost/json/?conteudo={"Login":"[email protected]","Senha":"12345","Posicao":{"Latitude":"-18.8693459","Longitude":"-41.955664"}}
How to play it for the php below:
<?php
$valor = json_decode('LINK AQUI');
echo "<pre>";
print_r($valor);
?>