473,385 Members | 1,780 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

simple setup for allowing visitors to choose their country

Hi

I need to be able to change the currency and some form fields displayed on
my website depending on where the visitor is based. I don't need a fully
functional cart, just a kinda either display '$10' or '£7' sort of thing!

I was planning on having a map on my opening screen with hotspots over the
countries. On the links for the hot spots I was planning to have something
like href="functions.php?FuncToExec=countrySelectUS"> in the functions.php i
was going to set a session variable to the country ie 'US' and then
automatically move to my normal page. Then in my forms etc I was planning on
using if statements to select price etc.

This seems rather long winded! Is it the right way to do it?
Thanks for any help given
NO


Oct 24 '05 #1
8 1603
"Nicole" <ni***************@yahoo.co.uk> wrote:
Hi

I need to be able to change the currency and some form fields
displayed on my website depending on where the visitor is based. I
don't need a fully functional cart, just a kinda either display '$10'
or '£7' sort of thing!
How many currencies?
I was planning on having a map on my opening screen with hotspots over
the countries.
World map? Are you going to support them all? Is every visitor able to find
his/her country on this map?
On the links for the hot spots I was planning to have
something like href="functions.php?FuncToExec=countrySelectUS"> in the
functions.php i was going to set a session variable to the country ie
'US' and then automatically move to my normal page. Then in my forms
etc I was planning on using if statements to select price etc.


php -> use a hash with the key the currency code, and the value the
conversion rate. If the key is undefined, report "bad currency", don't fix
it to a default (you might overlook a bug that way).

--
John Perl SEO tools: http://johnbokma.com/perl/
or have them custom made
Experienced (web) developer: http://castleamber.com/
Oct 24 '05 #2
Nicole <ni***************@yahoo.co.uk> wrote:
I need to be able to change the currency and some form fields displayed on
my website depending on where the visitor is based. I don't need a fully
functional cart, just a kinda either display '$10' or '£7' sort of thing!

I was planning on having a map on my opening screen with hotspots over the
countries.


That'll be popular with people from Singapore, Monaco, etc.

miguel
--
Hit The Road! Photos from 38 countries on 5 continents: http://travel.u.nu
Latest photos: Burma; Hong Kong; Macau; Amsterdam; Grand Canyon; Amman
Oct 24 '05 #3
Nicole wrote:

Hi I need to be able to change the currency and some form fields displayed
on
my website depending on where the visitor is based. I don't need a
fully
functional cart, just a kinda either display '$10' or '£7' sort of
thing!

I think the right way to do that would be using the GeoIP PHP API:

http://www.maxmind.com/app/php

This way you don't have to ask, just give them the custom layout based on
their IP Address. Not without its limitations, but think about
human-induced error factor: it is highly unlikely that you will get an
honest answer from a visitor coming from Russia, India, China or any other
place that online retailers don't like much. They know for the fact that
they will be treated badly and maybe even denied access to the site, so
why bother answering this question honestly? It's so easy to just pick
U.S.A. from the list you've provided.

--
Cheers,
Dmitri
See Site Sig Below
-------------------------------------

--
##-----------------------------------------------##
Article posted with Web Developer's USENET Archive
http://www.1-script.com/forums
Web and RSS gateway to your favorite newsgroup -
alt.comp.lang.php,alt.php,alt.www.webmaster,comp.lang.php - messages and counting!
##-----------------------------------------------##
Oct 24 '05 #4
Hiya

As I said its a simple solution that needed. I wont be supporting all
countries, only the English speaking countries that I choose in the future
to do marketing in.

So small countries are not an issue, neither are countries such as china
etc.

I am trying to implement the idea, but cant seem to get my function executed
from the hyper link :(

N

"www.1-script.com" <in**********************@foo.com> wrote in message
news:S0********************@fe01.news.easynews.com ...
Nicole wrote:

Hi

I need to be able to change the currency and some form fields displayed
on
my website depending on where the visitor is based. I don't need a
fully
functional cart, just a kinda either display '$10' or '£7' sort of
thing!

I think the right way to do that would be using the GeoIP PHP API:

http://www.maxmind.com/app/php

This way you don't have to ask, just give them the custom layout based on
their IP Address. Not without its limitations, but think about
human-induced error factor: it is highly unlikely that you will get an
honest answer from a visitor coming from Russia, India, China or any other
place that online retailers don't like much. They know for the fact that
they will be treated badly and maybe even denied access to the site, so
why bother answering this question honestly? It's so easy to just pick
U.S.A. from the list you've provided.

--
Cheers,
Dmitri
See Site Sig Below
-------------------------------------

--
##-----------------------------------------------##
Article posted with Web Developer's USENET Archive
http://www.1-script.com/forums
Web and RSS gateway to your favorite newsgroup -
alt.comp.lang.php,alt.php,alt.www.webmaster,comp.lang.php - messages and
counting!
##-----------------------------------------------##

Oct 24 '05 #5
>I think the right way to do that would be using the GeoIP PHP API:

http://www.maxmind.com/app/php

This way you don't have to ask, just give them the custom layout based on
their IP Address.
That's great to determine a DEFAULT, but let the user override it.
People do occasionally visit other countries. People could access
the Internet via international long-distance calls. And GeoIP is
far from perfect in determining how an international company allocates
its IP addresses within its own network (information which they
may consider proprietary).
Not without its limitations, but think about
human-induced error factor: it is highly unlikely that you will get an
honest answer from a visitor coming from Russia, India, China or any other
place that online retailers don't like much.
This was supposed to be a way of displaying things in the correct
currency, NOT a security measure to exclude people.
They know for the fact that
they will be treated badly and maybe even denied access to the site, so
why bother answering this question honestly? It's so easy to just pick
U.S.A. from the list you've provided.


And if they like looking at prices in US dollars, that's perfectly fine.
They may not be able to spend their own country's currency outside
that country anyway, and they may end up having to pay in US dollars.

Gordon L. Burditt
Oct 24 '05 #6
Nicole wrote:
I was planning on having a map on my opening screen with hotspots over the
countries.


How do you expect Americans to use that?

--
Toby A Inkster BSc (Hons) ARCS
Contact Me ~ http://tobyinkster.co.uk/contact

Oct 25 '05 #7
Nicole wrote:
I need to be able to change the currency and some form fields displayed on
my website depending on where the visitor is based. I don't need a fully
functional cart, just a kinda either display '$10' or '£7' sort of thing!
Looks wrong. Every currencies have different weightage. Say, for
example 1Euro~55INR while 1USD~45INR.
I was planning on having a map on my opening screen with hotspots over the
countries. <snip>

If supporting many countries, better not use the map at all. For
example, India has different versioned map: Indian version of India,
Pakistan version of India, CIA version of India, etc. So, there are
more chances that it will hurt anyone of them when you prefer one map.
(FYI, M$ had to touch their map of India in Win 95, IIRC).
This seems rather long winded! Is it the right way to do it?


Better, look at other CMS source codes and implementation, esp one
with all these supports.

--
<?php echo 'Just another PHP saint'; ?>
Email: rrjanbiah-at-Y!com Blog: http://rajeshanbiah.blogspot.com/

Oct 25 '05 #8
www.1-script.com <in**********************@foo.com> wrote:
I think the right way to do that would be using the GeoIP PHP API:

http://www.maxmind.com/app/php

This way you don't have to ask, just give them the custom layout based on
their IP Address. Not without its limitations, but think about
human-induced error factor: it is highly unlikely that you will get an
honest answer from a visitor coming from Russia, India, China or any other
place that online retailers don't like much. They know for the fact that
they will be treated badly and maybe even denied access to the site, so
why bother answering this question honestly? It's so easy to just pick
U.S.A. from the list you've provided.


One thing that really annoys me about Google is that when I use it from
another country, it redirects me to the "local" version and presents itself
in a language that more often than not, I can't understand. Then I have to
go in and set the language preferences for google.com.th or whatever - it
neither picks up on the setting I have for google.com, nor presents a
language option right on the main page.

Making bold yet inflexible guesses about people's preferences is quite often
a bad idea. It would be fine to present a recommended country selection, but
to insist on one based on IP address seems like a poor option.

Not to mention, of course, the unreliability of the practice in the first
place. If you look at the headers of my post you might think I'm in
Washington, DC, but I'm actually in Kuala Lumpur, some 10000 miles away.
There are proxy servers, corporate networks and VPNs, and all sorts of other
confounding factors.

miguel
--
Hit The Road! Photos from 38 countries on 5 continents: http://travel.u.nu
Latest photos: Burma; Hong Kong; Macau; Amsterdam; Grand Canyon; Amman
Oct 25 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Ryno Rijnsburger | last post by:
I am busy packaging our product as a standard Setup project in VS.NET that uses a bunch of merge modules (basically, a merge module for every key infrastructure component in our system). Part...
4
by: d.p. | last post by:
Hi all, I'm using MS Access 2003. Bare with me on this description....here's the situation: Imagine insurance, and working out premiums for different insured properties. The rates for calculating...
10
by: GeekBoy | last post by:
Okay, I have two identical web servers running Windows 2003 web server. I have an ASP.NET application which runs great on one of them. Dedicated IP address, behind our firewall, etc. Everyone's...
2
by: Shapper | last post by:
Hello, I am adding a statistics section to my administration area and I need to get information from my web site visitors when session starts. I know this is done in glabal.asax. My question...
0
by: ip2location.inc | last post by:
IP2Location has announced the availability of IP2Location .NET Component, that enables application developers to geolocation the Internet visitors by IP Address from their .NET applications. ...
6
by: Paul | last post by:
Hi All, Framework 1.1 listbox control unable to DataBind I've been googling for an answer to this query that appears quite a lot, but none, it seem, answers my problem directly. I am...
4
true911m
by: true911m | last post by:
Here's a little walkthrough to get py2exe up and running. I'm not an expert, so I can't help much with any problems you might have. This is what worked for me. The result here will be to convert...
2
by: Fred | last post by:
I have a server that will be running as a web server and a database server? To get the best performance is it better to install the database and web server on seperate physical hard drives? or it...
0
by: kashok | last post by:
hi all, how to track online visitors ip address and country name through ip address of those who are visiting my web site in asp.net..... Ashok
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.