I was working on a project yesterday that I found it necessary to create an auto-save feature do to the lengthy amount of text that would be entered into a text area. This is a little more complicated, but here it goes!
create.php
<?php
include ‘../../config.php’; //THIS FILE STARTS YOUR DB CONNECTION
if (isset($_POST["submit"])) {
$content = $_POST["content"];
$SQLsavearticle = “PUT [...]

