I'm trying to implement TableKit with my table. It works fine, except I'm struggling to update it dynamically. When I edit a table, it changes, but when I reload the browser it reverts back to the original data. The updated code goes to this php code:
<?php
header('Content-Type: text/plain; charset=UTF-8');
echo $_POST['value'];
?>
Can anyone guide me how I would be able to allow the edited data go to my database?
Probably a stupid question.
Thanks for any help.