mirror of
https://github.com/Floriansylvain/projet_programmation_web.git
synced 2026-08-19 19:53:18 +02:00
14 lines
228 B
PHP
14 lines
228 B
PHP
<?php
|
|
|
|
require_once("class/dump.php");
|
|
|
|
$author_name = $_GET['author'];
|
|
|
|
$these_array = dump::getTheseByAuthor($author_name);
|
|
|
|
$json = json_encode($these_array, JSON_PRETTY_PRINT);
|
|
|
|
echo '<pre>';
|
|
var_dump($json);
|
|
echo '</pre>';
|