[Answer]-When I submit a form it goes to unknown url

1👍

The form posts are made to url in action param. Since your action param is /poll/search it goes to that url.

0👍

Because that’s what you’ve specified as the form’s action parameter. If you want it to go somewhere else, put a different value in there (or no value at all if you want it to go to the same page).

Leave a comment