mosesdecoder/scripts/ems/web/comment.php

6 lines
112 B
PHP

<?php
$fp = fopen("comment","a");
fwrite($fp,$_GET{'run'} . ";" . $_GET{'text'} . "\n");
fclose($fp);
?>