Hi!
Im using a simple PHP-script to write to a textfile.
Problem is I want to include the symbol " into the textfile.
Im using the code:
fwrite($FilePointer, "<a href=".$LinkOne.">".$LinkNameOne."</a>" );
And the textfile will display:
<a href=http://www.myLink.com>myLink</a>
What I want in the textfile is the following line (including the “”):
<a href="http://www.myLink.com">myLink</a>
Thanks