see this:

<?php
$text = $_POST[sendText];
$myfile = fopen("scores.txt","a");
$fp = fwrite($myfile,$text);
$fp = fwrite($myfile,chr(13));
fclose($myfile);
print "&response=".$text;
?>

i need to know if it will make scores.txt if it is used.

if it doesn't tell me how to make it!