rdub Posted December 16, 2010 Share Posted December 16, 2010 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 More sharing options...
sstangle73 Posted December 16, 2010 Share Posted December 16, 2010 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 More sharing options...
rdub Posted December 16, 2010 Author Share Posted December 16, 2010 Thank you. I'm not much of a coder yet but I will work on that. Link to comment https://forums.phpfreaks.com/topic/221832-redirect-by-country/#findComment-1147964 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.