graham23s Posted December 25, 2007 Share Posted December 25, 2007 Hi Guys, i have a folder full of flags for nion each country, i store the users country in mysql as the country name i.e "Scotland", i was going to display the corresponding flag next to the users profile is there an easier way than: <?php if($country == "Scotland") { echo "<img src="flags/scotland.gif">"; } ?> for every flag, id be here till new year lol thanks guys Graham Link to comment https://forums.phpfreaks.com/topic/83140-best-way-to-display-flags/ Share on other sites More sharing options...
AndyB Posted December 25, 2007 Share Posted December 25, 2007 echo "<img src='flags/". strtolower($country_name). ".gif'>"; where the $country_name var comes from your database Link to comment https://forums.phpfreaks.com/topic/83140-best-way-to-display-flags/#findComment-422900 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.