Alain R. wrote:
Hi, how in PHP can i create the similar header as following ? <head> <base href="www.mywebsite.com"> </head> thx. A.
just incase everybody ese went down a complete tangent: <head> <base href="<?php echo $_SERVER['HTTP_HOST']; ?>"> </head> -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php