Say I scripted a simple slot machine type of game with php3 ( http://www.amalgamusic.com/rand.php3 for instance. ) and I just wanted people to be able to enter their names, and it would add that person's name to a file... How would I accomplish this?
$fp = fopen($filename, "a"); fwrite($username, $fp); fclose($fp);
i might have $username and $fp backwards, but that is the jist of it.