This option will reset the home page of this site. Restoring any closed widgets or categories.

Reset

Posts Tagged ‘scirpts’


Page 1 of 11

Appending string using php to a text file

  A very easy way to append string to a file using simple php script  <?php $fn = “file.txt”; $file = fopen($fn, “a+”); $space.= “\n”; if($_POST['addition']) fwrite($file, $_POST['addition']); fwrite ($file, $space); fclose($file); ?> <form action=”<?=$PHP_SELF?>” method=”post”> <input type=”text” name=”addition”/><br/> <input... (Continue reading)

Tagged with:         

Page 1 of 11