Please tell me what are the alternatives form in the form of php. There is a form that stretches across the whole page. How to make another form with a post or get request in this form?

  • one
    Form fit is a bad decision. - u_mulder
  • @u_mulder I understand, and because of this, looking for alternatives. - Vladislav Samokhin
  • In html5, inputs have an attribute of the form , which must contain the id of the form they belong to. That is, you can close the first form, start and finish the second, and then simply insert the input with the form attribute without the form tag. - u_mulder
  • @u_mulder instead of input I have this code <a onclick = 'this.parentNode.submit (); return false; ' class = 'con-vis' form = 'delete'> <span class = 'fas fa-trash-alt'> </ span> </a> how to be in such a case? - Vladislav Samokhin
  • @u_mulder and when I close the first part of the first form, the second part of the first form is not sent. - Vladislav Samokhin

0