Mukhbir

 
  • Increase font size
  • Default font size
  • Decrease font size
  • default color
  • green color
  • blue color

Write data to a file using php

E-mail Print PDF

To add a data to a text or any other file using php use the following code:

<?php

$file=fopen('file.txt','a+');
fwrite($file,"text to be added");
fclose($file);

?>

Comments (0)Add Comment
Write comment
 
  smaller | bigger
 

busy
Last Updated ( Friday, 02 January 2009 16:21 )