Subversion Repositories eFlore/Applications.cel

Rev

Blame | Last modification | View Log | RSS feed

<?php
// CRUD ligne d'inventaire :
// In get : utf8
// In post : utf8
// out : utf8

Class CodeAsync extends DBAccessor {

        function Inventory($config) {

                $this->config=$config;
        }


        function getElement($uid){

           // Controle detournement utilisateur
            session_start();
                $value=array();

                $cle = urldecode($uid[0]);
                
                $addr = "http://maps.google.com/maps?file=api&amp;v=2&amp;sensor=true&amp;key=".$cle;
                
                $script = file_get_contents($addr) ;
                header("Content-Type: text/plain; charset=UTF-8");
                $value = json_encode($script) ;

                echo $value;
        }
}
?>