I've tried output buffering to no avail. I'm trying to have a page that has Google tracking code at the top that fires before headers force a document download. No matter what I try, it seems that nothing is even echoed if I have the header output anywhere on the page. Ideas/suggestions?
Ex:
<script type="text/javascript">// JS here</script>
<?php
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
etc...
?>