I am fairly new at PHP. I am creating a staff management system for a client, and I want to create a unique link and echo the result after the user submits a new profile using a form.
In other words, on form submit, create unique page, and echo.
I’ve been googgling around but I don’t think I am using the right term.
What your looking for is URL parameters.
When you submit a form to a particular URL it sends all the form data via the URL parameters.
Depending on the type of submit
GET
orPOST
you can see the data in the URL or not.To fetch the data
1st page
2nd Page