Hi neighbour!
I think kburger answered your question... to pass variable through the url you need a key and value which are stored in an array called $GET automatically. In your email example, 'email' is the key and 'you@hotmail.com' is the value. Thus,
echo $_GET['email'];
displays the value of the 'email' key in the $_GET array.
You second example has a value (Hello+this+is+a+test) but no key so no way to access it directly. (besides the $_SERVER['QUERY_STRING'] method)
What you need is:
info.php?text=Hello+this+is+a+test
To display it:
echo $_GET['text'];
Uou can also pass multiple variables this way:
info.php?email=you@hotmail.com&text=Hello+this+is+a+test