Flash / php

Okay…i have this flash thing…
http://www.airspacedesigns.com/falloutbmx/secret.html

Basically you enter your ‘deepest secrets’ and they are loaded into a text document for my prying eyes to see… :slight_smile:

i used flash, and php…i have an imput box as you can see with a var of input

and the submit button has actions like:

[AS]

on (release) {
loadVariablesNum(“write.php”, 0, “POST”);
}

[/AS]

and the php on “write.php” is like this:


<?
$input = $_POST['input'];


if($REQUEST_METHOD == 'POST'){
$file = "textdata.txt";
$fp = fopen($file, "a+");
fwrite($fp, $_POST['input'] . "
");fclose($fp);
}
?>


What i am wanting to know, how can i add more input boxes, like name, and have it post along with the users message???