Jump to content

redirect by country


rdub

Recommended Posts

I have the product catalog/shopping cart. I need to modify the registration so that it allows the customer to complete the form but then takes him to a message telling him who to contact based on the country he enters during registration.

 

Maybe an if country=A go to...

If country=B go to...

 

else go to...

Link to comment
https://forums.phpfreaks.com/topic/221832-redirect-by-country/
Share on other sites

you could use if statements

if(country=='A'){
echo "person A";
} else if(country == 'B'){
echo "person B";
} else {
echo "person C";
}

 

or are you trying to change the website? if so then use headers with if statements:

http://php.net/manual/en/function.header.php

Link to comment
https://forums.phpfreaks.com/topic/221832-redirect-by-country/#findComment-1147957
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.