I am not sure why you would want to do that, but you could always use $_SERVER['QUERY_STRING'] to get everything after the ? in your URL.
However, don't use $REQUEST. If you are using the GET method, use $GET, and $_POST if you are posting your form.
Why is it that you want to put all three values into one variable? That doesn't make good coding sense to me...