I would like to include external php files into my index.php without using:
index.php?p=pagetoinclude.php
I have it like this now: index.php?page=home <- that will include home.php but I have completely forgotten how to do it like this:
index.php/home/ without "?" but using "/" slash instead.
Use mod_rewrite
And I should point out that including a page passed in via GET parameter could be extremely insecure unless you’re doing the proper checks.