What you see is just HTTP's "GET" information being passed to the PHP page, just asif an HTML form was submitted use "method=GET".
The GET information is immediately available in the PHP script either as Global variables or data in an array called $HTTP_GET_VARS.
You can use this data to decide what to print on the next page.
You may want to check the PHP manual for more info.