Sorry my title was not very descriptive, Its just, Im not sure what to call these or even, how to do it…
Alright, first thing of two, I have seen URLs like these:
index.php
index.php?id=index
index.php?index
index.php?/index/
Now, I know how using forms to GET the data entered is possible, but ive looked into this and havent found a single form code around the URLs. Ive also looked at various resources, and haven’t found out how to do this without form codes.
Second thing, ive seen how those urls can display different outcomes, but also effect what the page displays this, so when making an install script and other things for my script, I would like to know how I can make stuff like these URLs:
install.php?/step-1
install.php?/step-2
or
install.php?step-1
install.php?step-2
and also create URLs like this for my user register and user login URLs:
index.php?/register
index.php?/login
index.php?register
index.php?login
index.php?i=register
index.php?i=login
And for more info, I use a folder called library to store all my extra files, and I would like one of those to and ‘i’ is for a simple looks in case it requires one. If it requires .htaccess edits, I can do that to.
Thanks for any help guys!
-Improvizionz