Strange problem:
in the following code works both includes (both files are shown) but only one echo:
if (!$noParents){
echo "You are parented!";
include 'views/parentsarea.html.php';
} else {
echo "You are not parented!";
include 'views/parentsarearegister.html.php';
}
Includes are adding when script is parsing.