mosesdecoder/scripts/ems/web/comment.php
Jeroen Vermeulen a25193cc5d Fix a lot of lint, mostly trailing whitespace.
This is lint reported by the new lint-checking functionality in beautify.py.
(We can change to a different lint checker if we have a better one, but it
would probably still flag these same problems.)

Lint checking can help a lot, but only if we get the lint under control.
2015-05-17 20:04:04 +07:00

6 lines
111 B
PHP

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