Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
TP02
/
burndown
:
backend.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php header('Content-Type: application/json'); function generateCurvePoints() { $points = []; for ($x = 0; $x <= 50; $x++) { $y = sin($x); // Exemple de fonction sinus $points[] = ['x' => $x, 'y' => $y]; } return $points; } echo json_encode(generateCurvePoints()); ?>