In my index.php I have:
<?php
require_once('./headers/hed1.php');
require_once('./headers/hed2.php');
require_once('./headers/hed3.php');
echo 'TEXT';
?>
When I run this on my pc (using XAMPP) I get the result I want: the output of the three require_once, and then the TEXT.
I uploaded it to a server, and the same code has a different output. I see first the TEXT, and then the three require_once.
I saw another post of someone with the same problem, but there was no solution. Why the output id displayed in a different way if it's onlyne? Is there a way to "reorder" the three require_once?
Thanks in advanced!