All welcome.
There is a form:
<form action="example.php" method="GET"> <input type="text" name="example"> <input type="submit" value="test"> <select name="selector"> <option value="0">Селектор</option> <option value="1">1</option> <option value="2">2</option> </select> </form>
As the GET request goes, all the name arguments go to the URL. (example.php? example = test & selector = 1)
How can you make the data passed to the file example.php, but so that the selector does not go to the URL?
Thank you in advance.