How to send data like html tag a but through a form? You must pass the value of the variable page=1
<a href="www.nostname/web/index.php?r=test/access/index&page=1"> I'm trying to:
`<form action="www.nostname/web/index.php?r=test/access/index&page=1" method="get"> Поиск: <input type="text" name="page"> <p><input type="submit"></p> </form>` But instead of going to this address:
http://nostname/web/index.php?r=test/access/index&page=1
goes over this if I enter forms 3 imput.
http://nostname/web/index.php?page=3
actionattribute, you pass the link<form method="www.nostname/web/index.php?r=test/access/index&page=1">.., and when the form is submitted, the form will follow this link to the server. - Vasily Barbashev