Not sure if this is what you're asking, but in x.php, you'll need a line like:
Code:
$variable = $_GET['t']; // $variable becomes the value of t= in the URL's query string
If you're going to do anything with that variable BE CAREFUL! People can easily inject script or SQL commands into GET variables causing very dangerous results.