Jump to content

Ideas Anyone?


DeathStar

Recommended Posts

Hello there.

 

I'm busy making an fully automated website for one of my clients.

Is there maybe a language packs anywhere on the internet, that is already in an array or something?

 

I'm making this website in mysql and php, but I really do not want to waste server load on mysql.

 

I have seen an array like this before:

if (isset ($_GET['lang']))
{
    $langue = $_GET['lang'];
}
elseif (preg_match("/^fr/", $_SERVER['HTTP_ACCEPT_LANGUAGE']))
{
    $langue = 'fr';
}
else
{
    $langue = 'en';
}
$langues = array(
    'en' => array(
        'langue' => 'English',
        'autre_langue' => 'version française',
        'vers' => 'Version :',
    ),
    'fr' => array(
        'langue' => 'Français',
        'autre_langue' => 'english version',
        'vers' => 'Version de:',
    ),
    'all' => array(
        'Hello' => 'Hello',
    )
);

 

I don't exactly know how that works but have an idea.(I never bothered with arrays before.)

Is the a language pack or would an array like that be the best, that I include in pages?

 

Help Appreciated.

 

Edit: I also use GD Image's for buttons.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.