i hope i get more help in this than i did the other questions i asked...
ok, this is what i'm trying to do. i want to be able to register a link that is clicked and then get that link name and include a file associated with it. this is pseudo code so bear with:
if (getlink($clickedlink))
include $clickedlink.'php';
what it is supposed to do is register the link that was clicked and then add the '.php' at the end and then include that file. of course i'll do some security measure and check to see if the file exists and such but i would like to know if i could do this.
there is also the security part of it that could be a problem. accessing an arbitrary file that is on the server somewhere but i'm not sure how to check to make sure that it only checks files that exist within the spectrum of the root folder. .htacess maybe?
either way, those are my questions. i'm not completely sure how to go about this but i think it's a great idea. it's just the issue of actually implementing that is difficult