So, I have a contact form on one page (let's call it send_now.php
or example.com/send
)
Once the form is filled out and submitted, then an email is sent to a certain user while the page is directed to example.com/it_is_sent
page which contains a sent confirmation based on confirmation.php
.
I would like to know how to change it so that everything is done on example.com/send/
page without refreshing or redirecting the user to the next page.
Here is what I mean.
So, in /send/
page, an user fills out the form and click send. Then without redirect the user to /confirmation/
page, the confirmation is shown on /send/
page without redirecting the user, so everything happens within the same page.
Is there a way to do that? what is the general concept of doing things like that? or, can the form be submitted within the same page without refreshing the page?
Thanks!