include not working

I don't get it 😦
I'm using include for every page to get my server and my header.
But on one reason doesn't work on this page

<?php 
   include './Includes/server.php';
   include './Includes/header.php';
?>
// Rest of my code
<?php 
    include "./Includes/footer.php"
?>


my folder structure for this file is:

|-- assets/
| |-- css/
| |-- js/
| |-- images/
|
|-- includes/
| |-- header.php
| |-- footer.php
| |-- server.php
|
|-- pages/
| |-- admin/
| |-- kruiske-online.php this is the file where it doesn't work
| |-- settings.php
| |-- home.php

Is there anyone that knows how I can fix this?

Ps. I got these error messeges:
Warning: include(C:\xampp\htdocs\twt-app.dev\pages\admin../../Includes/server.php): Failed to open stream: No such file or directory in C:\xampp\htdocs\twt-app.dev\pages\admin\kruiske-online.php on line 2

Warning: include(): Failed opening 'C:\xampp\htdocs\twt-app.dev\pages\admin../../Includes/server.php' for inclusion (include_path='C:\xampp\php\PEAR') in C:\xampp\htdocs\twt-app.dev\pages\admin\kruiske-online.php on line 2

Warning: include(./Includes/header.php): Failed to open stream: No such file or directory in C:\xampp\htdocs\twt-app.dev\pages\admin\kruiske-online.php on line 3

Warning: include(): Failed opening './Includes/header.php' for inclusion (include_path='C:\xampp\php\PEAR') in C:\xampp\htdocs\twt-app.dev\pages\admin\kruiske-online.php on line 3

Warning: include(./Includes/footer.php): Failed to open stream: No such file or directory in C:\xampp\htdocs\twt-app.dev\pages\admin\kruiske-online.php on line 10

Warning: include(): Failed opening './Includes/footer.php' for inclusion (include_path='C:\xampp\php\PEAR') in C:\xampp\htdocs\twt-app.dev\pages\admin\kruiske-online.php on line 10
Was this page helpful?