Pitfalls When Submitting Forms During Parsing in PHP
Form submission may not work for several reasons. For example, the form has a hidden field that you did not pay attention to, or additional fields are added using JavaScript.
If your attempt to submit the form is unsuccessful, you need to carefully track the form data, for example, through Postman.
The following tasks deliberately simulate such situations. Try to achieve form submission without looking at the source PHP code of the form handler.
Download the site from the link targ1.zip and deploy it locally. Write a parser that will submit the form and parse the result.
Download the site from the link targ2.zip and deploy it locally. Write a parser that will submit the form and parse the result.
Download the site from the link targ3.zip and deploy it locally. Write a parser that will submit the form and parse the result.