rick@fgritter.com
|
| Posted: 09/20/2002, 11:38 AM |
|
I'm building each of my systems in subdirectories on my web site. Each has a domain name that I've parked at my primary domain name. Can I use PHP to read the address typed in at the browser, and then send back the appropriate page for that address? This is mostly a way of avoiding extra cost while I am developing some sites. Thanks for your help on this.
|
|
|
 |
Nicole
|
| Posted: 09/21/2002, 3:03 AM |
|
Hello,
use PHP server variables to get server name:
echo HTTP_SERVER_VARS["SERVER_NAME"];
to get the list of all vars use phpinfo() function.
|
|
|
 |
|