It works perfectly, except for ONE thing.
Every time I tell it to write something like $hello... it substitutes the value of $hello (which since it's not assigned is blank).
My code:
Code: Select all
$stringData = "echo \"$footerhere\"; \n";
fwrite($fh, $stringData);echo "$footerhere";
what I see is:
echo "";
How do I make it write the var. name?