I have a system where in users can create forms dynamically. Once the form is created a unique URL is generated and stored in the database . These URL’s are for calling the form back when the users type it out in the browser .
Now i want a particular file to read the url when the users type out the generated url in the browser , so that i can get the last segment of the url which is unique and fetch the respective data at run time .
I cant seem to figure out how to do that .
If you are trying to receive data from a URL string, you will need to use the
$_GETvariable .If the url is
http://domain.com/page.php?var1=some-stringYou would retrieve
var1like so:Is this what you’re asking or is it something more in-depth?