There are a lot of explanations to write to the form, so it would be good to break it into several pages in one document. Php Can you use the example of this form to show where and what to insert, so that the browser displays part of the form?

<form action="email.php" name=mailer method=POST> <h1>Заголовок</h1> // --- стр 1 поля формы <p>Текст </p> <input type=text> <input type=text> <input type=text> <a>ссылка на стр 2</a> <h1>Заголовок</h1> // --- стр 2 поля формы <p>Текст </p> <input type=text> <input type=text> <input type=text> <a>ссылка на стр 3</a> <h1>Заголовок</h1> // --- стр 3 отправка формы <p>Текст </p> <input type=text> <input type=submit value="отправить"> </form> 
  • either js or storing values ​​in session and then processing - Naumov
  • Make js-tabs - u_mulder

1 answer 1

Here is the way in which you can break the form "in the classic version":

 <form id="ff"> <input type="text"> <form> . . . . . . . . <input form="ff" type="text"> . . . . . . . . <input form="ff" type="text">