Just a few thoughts...
1.) Why are you using get as a form method?
2.) You have not defined those variables so they are printing what they hold, nothing.
Depending on how you have your webserver configured you may be able to access variables directly defined as so, but using consistent names.....
Code:
<input type="text" name="yname">
Code:
<?php print $YourName; ?>
See how those 2 dont coincide?
You may need to use $_POST[varname] and $_GET[varname] depending on your configuration.
You really would be better off just writing this from the start and learning a quick bit about using POST, GET, and forms in PHP. It is all fairly simple.
<form action=page.php method='POST'>
<input type=bleh name=newname>
</form>
on submit....
print "This is my variable --> $_POST[newname]\n";
This will post the form data in newname and (depending on your configuration) allow you to print/store/manipulate that data.