<?php

    
// -- Include your database connection information here -- //
    
    // First we create the query to retrieve the data from the database
    
$query mysql_query("SELECT content FROM auto_save_table");
    
$row mysql_fetch_assoc($query);
    
    
// Then we return the results to the AJAX handler
    
echo $row['content'];

?>