I would like to have a page called something like site.php or site.html. Then, after that, I want to be able to do something like ?id=345 (www.mydomain.com/site.php?id=345) and go to a different page that ?id=235. (www.mydomain.com/site.php?id=235) How would I go about doing that? Can you possibly also give me a link to a tutorial telling me how to do that?
Here's a great tutorial for that: http://www.netcode.net/tutorials/php_mysql/easy_navigation.php Hope that helps
your question isn't very clear... you want to open a page based on the id? site.php?id=235 will open a page and site.php?id=236 would open another?
i think you got it wrong... typically, getting to http://www.mydomain.com/site.php?id=235 would mean that the target page is site.php itself and you are passing a $_GET variable to site.php. if you indeed mean, going to another page indicated by id=235, then site.php is merely a forwarder. if this is the case, in site.php, do the following: 1. read the final target url from a database using the id=235 as a key 2. use the header command to re-direct to the new page good luck!