Is there a simple way to save the contents of an include file to a variable?
I need to perform an nl2br on an entire php file so it can be used as a javascript variable, ie:
<script language="javascript">
htmltowrite = '<?php nl2br(include('pages/services/business.php')); ?>';
</script>