I have a website and in it some functions that collect some data and then send them to a URL with a submit, the html is the following:
<span class="nearest"; style="color: white; font-size:15px; font-weight: bold">
<form action="http://example.com/?page_id=262" method="post">
<input type="submit" value="Solicitar" name="Submit" id="frm1_submit" class="btn btn-primary "style="font-size: 14px; font-weight: bold">
</form>
</span>
<br>
As it is Wordpress, I would like all the content to be sent to a contact form on the page link . That's why I need that when people click on "Request", the submit forwards to another URL that should look like this:
http://example.com/?page_id=262&5value1=precio&5value2=ciudad
However, it looks like this:
http://example.com/?5value1=precio&5value2=ciudad.
I mean, I'm missing the page_id = 262 &.
Do you have any idea how to solve this?