This the "GET" method of HTML which PHP uses to pass variables around.
blah.php : is the page. It can be any page
seen alot with index.php because
it allows someone to make a
single page divided with if
statments as to what gets
displayed.
? : separtor between the data and the
page name
page=new : is "variable" equal to "value"
additionally there are
& : which is used to string serval
key and values together, ie.
page=new&id=23
+ : used to for spaces if we wanted
the value to be "new page" we
would need it be.
page=new+page
This method allows you to GET variables for the page from the $QUERY_STRING. In this case $page is equal to "new".