I pretty much have the file writing part down... and passing the variable from the form... I'm stuck on combining the form variable with the delimiter, though.
I have
$field1 = $HTTP_POST_VARS['text'];
$delimiter = "|";
$handle = fopen ("file.txt", "w");
$output = implode($delimiter, $field1);
fwrite($handle, $output);
fclose($handle);
and I'm getting Bad arguments to implode().
I checked php.net/implode, seems like I'm doing it right. Obviously not though, eh?