Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm looking for a decent php script/snippet that can display a flag by the users' country with PHP. Surprisingly, there doesn't seem to be a decent/accessible solution for this.

Here's the idea:

  1. Firstly, the flag images should condensed into a single sprite

  2. The script would then zero in on the coordinates of the sprite based on the country code.

That's about it.

Any ideas on how to tackle this?

UPDATE: Any links to libraries, apis, etc would be welcome. Tried the one at phpclasses.org and failed at registering. What a P.O.S. site!!!

share|improve this question
@Tarek Now THAT'S wut I'm talking about! Thanks:) – DudeSolutions Jan 2 at 20:54
Are you looking for the right php manner to detect the language from the server variable such as $_SERVER['HTTP_ACCEPT_LANGUAGE'] ? – Newben Jan 2 at 20:57
1  
@Newben Tarek showed me the easiest way via the frontend with CSS. Didn't need PHP at all for this. Way cool. But thanks for pointing out that most helpful array key. – DudeSolutions Jan 2 at 21:00

closed as not constructive by FreshPrinceOfSO, Jocelyn, Ram kiran, Sameer, Ed Heal Jan 3 at 4:37

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

up vote 2 down vote accepted

You can try the sprite over here : Flag sprite

share|improve this answer
Solution works for all server side languages, problem solved in 2 minutes. I shoulda asked this freakin' question days ago. I owe you a beer. – DudeSolutions Jan 2 at 20:57

In keeping with the question, I had to use a little PHP in order to make the cool little above sprite to work...

Taken from http://flag-sprites.com/

The example provided was

 <img src="blank.gif" class="flag flag-cz" alt="Czech Republic" />

Naturally, I had to sprinkle a little PHP in the above syntax in order to make it dynamic. I have a table called users that has a string containing the country name of the user.

Like this:

$user['country']

And since the coordinates of the sprite is determined by two letters following "flag" in class attribute of the image, I had to create a simple function to convert the country name stored in the users table to a two letter string... so Czechoslovakia would be converted to "cz" in this example.

WARNING: this solution contains spaghetti code.

Here's what I did:

function convertCountryString($country){

   switch($country){
     case "United States":
       return 'us';
       break;
//and so on

}

}


 <img src="blank.gif" class="flag flag-<?php echo convertCountryString($user['country']);?>" alt="" />

Ugly, but it works:)

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.