Hi,
I think what you want to do is this. You have a text file...
--- texfile.txt ---
Remove Me From Here
--- textfile.txt ---
and you have a php file rto remove that from th file.
--- removefromfile.php ---
<?php
$variable = "Remove Me From Here";
$new_var = srt_replace("$variable", "", $variable);
?>
--- removefromfile.php ---
Hope this helps...
Elfyn.