Welcome to mirror list, hosted at ThFree Co, Russian Federation.

comment.php « web « ems « scripts - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 04628ea4ff0a3dcbd32d0f1fc37536790cde56c5 (plain)
1
2
3
4
5
<?php 
  $fp = fopen("comment","a");
  fwrite($fp,$_GET{'run'} . ";" . $_GET{'text'} . "\n");
  fclose($fp);
?>