I have a script written in PHP. I'm curious to see what it would cost to convert it to a Wordpress plugin. The script figures out the country of the person visiting the blog and stores the 2-letter country code into a variable which allows me to display unique data based on the visitors country. (database comes from MaxMind.com and is binary in .dat format) Knowing the 2-letter country code I can add something like this to my php code: (not valid code I realize) If COUNTRY=CA Then - show Canada content Else - show content for every other country End If Well, I'd like to be able to make it simple to add this to posts/pages and template files. Also, I'd like to add the ability to capture the city name and state/province name as well. I'll PM you an example of admin pages that I created which further explains what I want done.