2024-01-29 00:02:02 -05:00
|
|
|
<?php
|
2024-01-29 07:36:56 -05:00
|
|
|
// Load tasks from the flat-file database (tasks.json)
|
|
|
|
$tasks = file_exists("tasks.json") ? json_decode(file_get_contents("tasks.json")) : [];
|
2024-01-29 00:02:02 -05:00
|
|
|
echo json_encode($tasks);
|
|
|
|
?>
|