Code:
<?php
$saveName = $_REQUEST['Name'];
$saveScore = $_REQUEST['Score'];
$saveMsg = $_REQUEST['Msg'];


$toSave = "Name=$saveName&Score=$saveScore&Msg=$saveMsg";

echo $toSave;

$myfile = fopen("save.txt","w");

echo $myfile;

fwrite($myfile,$toSave);
fclose($myfile);
?>
the above code worked when I tried it in wamp, locally.