Search found 1 match

by webmobster
Thu May 18, 2006 1:31 pm
Forum: PHP - Code
Topic: fwrite pointer
Replies: 2
Views: 385

fwrite pointer

$myFile = "testFile.txt"; $fh = fopen($myFile, 'a') $stringData = "anything"; fwrite($fh, $stringData); Does anyone no a piece of code or a function that will not make the file just add the code on the end but at a cetain area/line or after a certain word because I am trying to m...