my html page gets ? (but I’m sending things via post). http://localhost/Systeemaaline/formulario.html?

Asked

Viewed 29 times

0

  • 2

    Without the code we can only start from speculation and this will not add up to anything. Could [Dit] and build a [mcve] of the problem?

1 answer

0


This is because most likely your shipping method <form> is as GET, or not even configured. suggest adding the following tag method='POST', to your form.

Example:

<form method="POST" action="página">
</form>

Browser other questions tagged

You are not signed in. Login or sign up in order to post.