I have question about pages and their redirection (I'll explain).
I'd like to achieve something like on http://wimp.com
When you click on any link of a video there you will be redirected to (probably) new page with name of title of the video.
I am curious about how they make these "new" pages with videos, I doubt they make everyday 6 new XXX.php files and uploading them on their server.
Lets say I have database with 1 table - X collumns (id,name,city,number,age etc.).
I have homepage "index.php" where is the list of all names from my database (eg. 1000).
When I click on some name, I want to be redirected to a "new" page with detailed info about this person.
Code: Select all
<a href="???">Joe</a>
<a href="???">Jack</a>
<a href="???">John</a>
.
.I hope you understood what is my problem. / sorry for english
ps: I am not asking about .htaccess and its functions.