writing at the top of a .txt fiel using php ?

  • Thread starter Thread starter scopefragger
  • Start date Start date
S

scopefragger

Guest
hopefully this will be the last thing i have to ask for a while ive piked up alot
Just one final thing ^^;;. Im currently using php to write the contents of to a txt file. When i write the contents im using 'A' which due to the nature writes at the bottom simply "adding" onto the text file. I have to write the new content at the top of the text file.
$File2 = "shoplist.txt";
$Handle2 = fopen($File2, 'a');
$Data2 = "<a href=\"$filetowrite\">".$filetowrite2."</a><br>";
fwrite($Handle2, $Data2);
fclose($Handle2);
 
Back
Top