Tag Archives: AJAX

To Do List Project: Part 6

Writing the ending time to each ToDoSlice item is more complex because we have to match to an existing record without benefit of having a unique ID to reference. Instead, we use a combination of the ToDoID index and the … Continue reading

Posted in Software | Tagged , , , , | Leave a comment

To Do List Project: Part 5

The next step is to make the back end actually write some data to a database using PHP and MySQL. This is the UpdateStartTime.php file. The startSliceAjax function that communicates with this PHP is shown below, just slightly modified from … Continue reading

Posted in Software | Tagged , , , , | Leave a comment

To Do List Project: Part 3

Today I replaced part of the update code with a basic AJAX call to derive the same information I was getting from JavaScript. The communication itself is straightforward. Here’s the updated version of the JavaScript, which is currently embedded in … Continue reading

Posted in Software | Tagged , , | Leave a comment