Is there a way to send the results from submit to a PHP MySQL Table?
SpreadsheetConverter generates a standard webform. When the user presses submit, the data is posted to a web page of your choice. You will have to create a simple PHP-page that parse the parameters and creates an sql-insert statement and runs it towards your database. This type of code is very simple and part of standard PHP-books. For example see http://www.freewebmasterhelp.com/tutorials/php/6 and how to store into a mySQL database, see here http://www.timestretch.com/php_intro/?page=php_intro At the last link, they have combined the HTML-form and the PHP-file into one file. This is not necessary. First have the HTML-page and only make sure the action points at your PHP-page that extracts the data and stores it into a database.