Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to get form requests from a html form post from the past?

So this is a pretty weird topic, but lets just say I made a big mistake while building a site. There is an application form on my website and people basically fill up the form and their entry gets saved in the database. Now how it is supposed to work is that the form is supposed to post to a page that catches the form fields and stores it in the database. However, I forgot to put the file under action. So basically the form has been posting to itself. Bummer. So based on analytics there were about 100 applicants on my site on that day which means that about 100 applicants are lost as the form was posted to just the page itself and not to the page that was supposed to catch form fields.

So is there a way, any way to get those applicants back?

Thanks

like image 877
clockwork Avatar asked Dec 01 '22 02:12

clockwork


2 Answers

The only book I can think of that could possibly help is this: http://www.amazon.com/Build-Time-Machine-Paul-Davies/dp/0142001864

like image 118
Wilbo Baggins Avatar answered Dec 03 '22 15:12

Wilbo Baggins


I hate to have to say it, but NO. Unless you had the form input being recorded in a database, logfile, or other persistent storage, it's lost.

like image 45
Luke Stevenson Avatar answered Dec 03 '22 15:12

Luke Stevenson