-1
The pages on my site are built like this: index.php (this is a file that only has "requires", that requires .php pages that have HTML, these pages will mount the page in question) one of the index requires (a file that is HTML, its extension is php) has a link that should call a file. php analog to index.php (a file that has "requires" and will therefore run on the server)
The problem I’m having is addressing: I don’t know how to put the address (I want it to be addressed from the root) in
See the image attached, I think the problem will become clearer.
It is not possible to put as
href="<?= $_SERVER['DOCUMENT_ROOT'] ?>/fisica/curso...">
?– ThRnk