is there any simple way to generate automatic html pages based on php pages.
Let's say that I have pages (php+mysql) on my server and I want to move it to server which doesn't have php (everything based on html)
Let's say that it is db with names of my workers, they log into php and generate their site automaticly, but now because of security reasons I am to move everything on html server.
http://server/index.php?id=3c&n=name&s=surname
and I want to convert it into
http://server/1,2448,12949.html (the number after slash is random generated automaticly)
I've seen such a thing in big newspapers.
To generate it automaticly is simple but how is this possible to have every link correct.
The only solution, which comes to my mind, is to store every link in database and it won't be any problem but how to do it in a simple way?
Any examples?