hey guys,
I have a given html page as a template for a newsletter.
Is it possible to load this file into a <textarea> field?
if so how?
cheers vamps
$data = htmlspecialchars(file_get_contents("newsletter.html")); echo "<textarea name=\"newsletter\">$data</textarea>";
cheers