Jump to content

Fwrite


walapu

Recommended Posts

$cq = fopen('confirmation_qoutes.txt', 'a') or die("can't open file");	fwrite($cq, '');	fwrite($cq, '%%');	fwrite($cq, trim($_REQUEST['quote']) . $creator);	fclose($cq);

This is returned as

%%stuff

but I want it as

 %%stuff

how would I do this?

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...