Well, perhaps you run a simple test, e.g.
<?php
if (!empty($_GET['name'])) {
echo $_GET['name'];
}
else {
echo '<a href="' . $_SERVER['PHP_SELF'] . '?name=hello">Click</a>';
}
?>
Just copy the code, upload the page, naming it as you wish.
Go to the page and check.