Home · PHP Scripts · write data to a text file

cms-zen dot com

online web development :: art and design :: fun stuff
best-budd
sNews Development cms road trip PHP Scripts Photoshop Guides Css Guides Music and video clips Art Gallery Low Light Photography Impression Photography

write data to a text file

This php script is a basic simple file read/write script.

  <?php

    $your_data 
"This is the data to be stored in the text file.";

    
// Open the file and erase the contents if any
    
$fp fopen("textfile_name.txt""w");

    
// Write the data to the file
    
fwrite($fp$your_data);

    
// Close the file
    
fclose($fp);

?> 

30.12.2006. 11:18