In php I have this folder 'architecture': (lo que esta en negritas son las carpetas y lo que no los archivos).
NOTE: The shared folder NO is inside the Curriculum.
Students
- Curriculum
- informacion_estudiantes.php
- Shared
- navs.php
In the file informacion_estudiantes.php
everything is in html
but with extension php
by which if I go to do a include
I must do this <?php include... ?>
THE PROBLEM:
I throw a warning "Failed opening '../Compartido/navs.php' for inclusion (include_path='C:\xampp\php\PEAR')"
when I try to do the include to the file navs.php from my file informacion_estudiantes.php ... this is what I do <?php include("../Compartido/navs.php") ?>
... I hope to have made me understand and what would be the correct way .. I have tried several ways and it does not work for me.