sakharamg's picture
Uploading all files
158b61b
raw
history blame contribute delete
111 Bytes
<?php
$fp = fopen("comment","a");
fwrite($fp,$_GET{'run'} . ";" . $_GET{'text'} . "\n");
fclose($fp);
?>