On Wed, Jun 06, 2001 at 07:23:59PM +0530, Saritha_Vinod wrote: > Hi > > Can we use perl to show multiple languages on the browser? > Sure. Perl may not be the cleanest way to do it, but you could. Use CGI.pm, and look for an "Accept-Language" header coming from the user agent. You could then figure out which translation to send them for a particular resource. Have a look at the HTTP/1.1 spec for more on content negotiation. You can find it on the W3C's web site <url: http://www.w3.org/>. The Apache server can do content negotiation for you, and I'd imagine that would be easier than rolling your own. cheers rob c