iowebsite/staff/load_tasks.php

6 lines
177 B
PHP
Raw Normal View History

2024-01-29 00:02:02 -05:00
<?php
// Load tasks from the flat-file database (tasks.txt)
$tasks = file_exists("tasks.txt") ? explode("\n", file_get_contents("tasks.txt")) : [];
echo json_encode($tasks);
?>