I've been beating my head against a wall for some time now so excuse me if my question is a bit difficult to understand 😃
It is just a simple thing that I completely do not understand. How do you make a link in a structure like the following?
Directories=
modules -> Classes -> index.php, test.php, classes2.php
Do you use variables? $_GET? if? in straight HTML it would look like:
<a href="modules/Classes/test.php>Test</a>
<a href="modules/Classes/classes2.php>Classes2</a>
but that leaves security issues or something so I have it set that you cannot access the file directly.
I'm able to link like this modules?name=Classes but I'd like to be a bit more organized and have a few different files under Classes rather than make a whole new module for each choice. or is that how I need to do it?
or...should I just write it in html?