|
Depends on what you are trying to do. A lot of times when you see a url like that data has been input (usually from a form) and the result is posted to that page where one or more choices of action exist and one of them happens based on the submitted value.
Sometimes it is simply the link that was clicked. Whether a form submission or a link it is created via the same method;
form action= "index.php?page=success" or
href="index.php?page=success"
edit: I have one page where a list of results from a mysql query is listed and there are 3 options for each item. Edit, view, delete. The result is posted to the same page but the action is different based on the query string submitted.
Last edited by colbyt; 03-01-2009 at 08:14 AM..
|