template_l.php 192 Bytes
<?php
header('Content-Type: application/json'); //pour que le navigateur l'affiche dans le format json
include('database.php');

function reponse_json($data){

    echo json_encode($data);

}