10 lines
115 B
PHP
10 lines
115 B
PHP
|
<?php
|
||
|
|
||
|
$data = resumeRequest();
|
||
|
|
||
|
header("Content-Type: application/json");
|
||
|
|
||
|
$str = json_encode($data);
|
||
|
|
||
|
echo $str;
|