if the variable is attached to the URL it's called a GET variable, so you can access it in your index.php file by referring to $_GET['email']
If your global variables are turned on though, you can just refer to $email and you'll get a value for it.
You just then have to build the code around it to do what you want with the variable, now you know how to access it. And darn me if that isn't the fun part :p