I have a template file that I would like to add the content to no write over it. I want the string $content to be added to my template instead of writing over it. Here is my current script
$tutorial = "template.php";
$fp = fopen("$tutorial","w");
fputs($fp, $content, strlen($content));
If you need any other info please just ask. And if you dont get my question aske again.

