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