But you're not passing the texts trough the URL!
Request this:
"http://localhost/score/score.php?name="&TextBoxObjectForName.Text&"&hiscore="&TextObjectForScore.Text
Attention on " and &, just change the bold text. ;)
Also i suggest you change
$name = $HTTP_GET_VARS[name];
$hiscore = $HTTP_GET_VARS[hiscore];
To
$name = $_GET['name'];
$hiscore = $_GET['hiscore'];
The var $HTTP_GET_VARS is deprecated in PHP (i know it's that wy on tuto, but believe me :) )