File size: 111 Bytes
158b61b
 
 
 
 
1
2
3
4
5
6
<?php
  $fp = fopen("comment","a");
  fwrite($fp,$_GET{'run'} . ";" . $_GET{'text'} . "\n");
  fclose($fp);
?>