Sorry ... I jumped the gun a little quickly here. That does work, but the new code written at the top writes over the code on the file that's copied. So if I want to add
<?php $section = "this"; ?>
to a page that starts w/
<?php require_once('this.php'); ?>
the new page will look like
<?php $section = "this"; ?>once('this.php');?>
I'm scratching my head here .. I've tried to but in a return and line break and it still doesn't work.