Ajax Scripts
26 April
Posted by Jake Rutter
JavaScript/Ajax, Web
As Ajax has been gaining ground in the web world, I have been taking a closer look. I found this site that has a nice little and easy to understand tutorial on how to implement a simple to-do list.AJAX To-Do List Tutorial










kjup Said,
January 3, 2007 @ 2:29 am
Nice find here Jake. I discovered that there was a cache clear in the external php file which was preventing it from saving to the db e.g.
header(’Cache-Control: no-cache, must-revalidate’);
header(’Pragma: no-cache’); // for HTTP/1.0
header(’Expires: Thu, 01 Jan 2970 00:00:00 GMT’);
removing that saves the info!