CODE
$var=('Test');
It will create an error. Here is an example of what I am talking about:
CODE
$var=("I want to use ' and " while allowing html and not using htmlspecialchars");
Basicly is what I want is a <<<END variable. I know you can do this in an echo like:
CODE
echo<<<END
This is some echo. I can use ' " ) and; without using htmlspecialchars
END;
This is some echo. I can use ' " ) and; without using htmlspecialchars
END;
Is there a way to make a simalur code that works with variables? Do you get what I mean? That would really help me out.
Thanks,
Sparkx
Note: I need it for HTML and some HTML strings use both ' and " so I cannot use just one and make the string with the other.

