I have this link, and when you click on it, theres a GET variable lets say domain.php?page=
$_GET['page'];
and if page equals a variable, I can echo out a form. So what if that form has a link to edit, but its under domain.php?page=form
oh and I have set this form in another page so I can just include("php_file.php") it and echo it out. I wanted to use GET variable because I can all other contents within the page and just echo out this form in a certain area.
Okay my question is, how do I pass another variable? like domain.php?page=form/edit or like would it be something like ?page=form?edit= so a new page will pop up so I can edit the form? And I want this to be able to keep in the same page with all the contents still
Or would I need to use a POST method?
I dont understand how some sites, they have a lot random strings after the domain name? and how would you be able to do something like that?