I have a text file that I need to remove the " from.
Does anyone know how to remove them from the text file.
I opened the .txt file like this...
$localfile = "test.txt";
$ideatext = fopen ($localfile, "r");
$contents = fread ($ideatext, filesize ($localfile));
can I alter $contents?
Tris...