I see these sites with PHP files that have for example here it is ?do=. I wanted to make an array of documents names:
$navigation[0] = "index.php";
$navigation[1] = "page1.php";
$navigation[2] = "page2.php";
So on and so forth. I'm probably not making any sense, but as I said in the title, I am new to PHP. I wanted to make something like:
index.php?nav=index.php // index.php?nav=page1.php // index.php?nav=page2.php
I'm not really sure how I would accomplish that. I would rather learn from what I know and not just look up an example script. Please can you help?