I need to include a file from a recursive directory, I'm using the following form:
<?php
require_once '../../cabecalho.php';
?>
Okay, what's happening is this. The header, which would be the header of the page + menu is loading, however, only the HTML, everything that is referenced inside the header, for example:
<link href="css/materialize.css" type="text/css" rel="stylesheet" media="screen,projection"/>
Is not loading, help?