[Vuejs]-Saving content from html in a txt file

0👍

You need to pass to your PHP file the VueJS variables like this:

<form method="POST" id="someform">
  <input placeholder="Enter Email" type="email" name="email">
  <input type="hidden" value="{{firstName}}" name="firstName">
  <input type="hidden" value="{{lastName}}" name="lastName">
</div>

Leave a comment