javascript - Saving html document to mysql in php -
this might useless question,i don't know exactly. have form comprising of many fields. whenever user clicks button, want html/php document saved in database along current values entered user.
is possible so? if yes, please let me know procedure.
for example can take html/php document sign-up forms.
you can use jquery solve asking this:
$(function() { var document = $("html").html(); console.log(document); });
and post document variable database.
Comments
Post a Comment