This is my directory structure:
classes
- myphpclass.php
controller
- controller.php
index.php
Now, I want to include myphpclass.php in my controller, but I don't know how to path it.
I'm trying something like include('classes/myphpclass.php');
But I can't make it to work