To start, I am using PHP with ob_start() and ob_flush.
In the code I have a part where parameters are suppose to be dynmacially loaded in the head of a file.
<head>
<script type="text/javascript" src="javascript/ajax_objects.js"></script>
//Enter More Code Here Later
</head>
What I am trying to is after the compiler has finished and reach the end of the file, and found more libraries to add, is there a way where I can add more libraries to the part where it says //Enter More Code Here ? I know it is possible using Javascript/AJAX, but I am trying to do this with just php.