Hello,
I'm trying to write some html tags to a file on php like:
But I get a string error: Parse error: syntax error, unexpected T_STRING
It works without the meta part, I think its because of the multiple " " , how can I make this work?
Thank you
I'm trying to write some html tags to a file on php like:
PHP:
$thetext="<html><head><meta name="description" content="test file">";
fwrite($tempvar, $thetext);
It works without the meta part, I think its because of the multiple " " , how can I make this work?
Thank you







