I have an HTML custom form within WordPress. This form currently is being validated on a different server and I call that other form with the “post” method.
However, due to spam bots, I need this form to first get validated on my server, so I need to create a custom PHP file that will validate on my server first, then I need to send that data from the form to the other server.
I do not know how to post again within a PHP form???, and how do I keep track of all my form fields so that I don’t lose any data from server to server?