I have many template where I want them to be includes instead of hard coded...
$static = "hello world"; // works fine...
However...
$static = include("../static_templates/bandpage_template_music_master.inc");
$newshtm = fopen("$file1", "w") or
die("Couldn't create file.");
fwrite($newshtm, $static)
or die("Couldn't write to file.");
fclose($newshtm);
When it writes to the file I get a 1 written in the file.