Logo  

CS479/579 - Web Programming II

Displaying ./code/AJAX/todo.php

<?php
  $data = file_get_contents("todolist.txt");
  if ($data === false or $data == "") $todo = [];
  else $todo = json_decode($data);

  if ($_POST['todo']) {
    $todo[] = htmlspecialchars($_POST['todo']);
    file_put_contents("todolist.txt", json_encode($todo));
  }

  echo json_encode($todo);
?>