What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Skype & Technology » Tech Talk » Language selector

Language selector
Author: Message:
rav0
Veteran Member
*****

Avatar
i have an avatar

Posts: 1419
Reputation: 29
34 / Male / Flag
Joined: Aug 2003
RE: Language selector
I'm not really sure of this, but since nobody else has replied, I'll add this.

It checks if the user agent (browser) accepts Spanish, and if so, includes indexsp.htm, otherwise includes index.htm. It also sets the content language HTTP header to Spanish or English depending on which file was included.

I've tested it on my computer and the English half works, but I don't know about the Spanish part because I don't have a computer in Spanish.

code:
<?php
if($_SERVER['HTTP_ACCEPT_LANGUAGE']=='es')
      {
      header('content-language:es');
      include 'indexsp.htm';
      }
else
      {
      header('content-language:en');
      include 'index.htm';
      }
?>
Hopefully somebody with better knowledge can take a look at this and modify or improve this where it needs to be.

Update:
Changed sp to es in line two of code.

This post was edited on 10-11-2005 at 09:04 AM by rav0.
| [Image: dorsh] |

(\ /)
(O.o)
(> <)

This is Bunny. Copy Bunny into your signature to help him on his way to world domination
10-08-2005 01:52 AM
Profile E-Mail PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Language selector - by wohow on 10-07-2005 at 08:59 PM
RE: Language selector - by rav0 on 10-08-2005 at 01:52 AM
RE: Language selector - by wohow on 10-08-2005 at 08:16 AM
RE: Language selector - by rav0 on 10-11-2005 at 08:49 AM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On