I have a form that sends data via GET
, forwarding the data to the page busca2.php
, as shown below:
<form action = "busca2.php" method = "GET" id="formulario">
When submitting the form, the link is as follows:
busca2.php?campo1=x&campo2=y&campo3=z(e etc)
I'm trying to pass this link to a friendly url. I already know how to implement the commands inside the htaccess
file. My question is to submit the form directly to the url already customized, for type:
busca/14/16/17/18(e etc)
How do I proceed?
Anyway, thanks to everyone.