<?php $file = "/home/gb.txt";
$fps=fopen($file, 'w+');
fwrite($fps,"$gbtext \n");
fclose($fps);
?>
this is my code problem..
in the variable $gbtext there is some html code that makes my problem.. i whant it to look the same there as in the gb.txt later.. but when i use the fwrite to put the $gbtext in gb.txt i comes up strange code i have not put there.. like this:
orginal code is:
<td width='100%' height='23'>
efter i have fwrite it to the gb.txt:
<td width=\'100%\' height=\'23\'>
eny one that knows why and how i can change this from happening?
😕 😕 😕