October 6, 2006 at 10:32 am
#710270
Inactive
if ($CountryCode == US){
// display code for US Residents
include (“us.html”);
}else{
// display code for World
include (“world.html”);
}
Doesn’t have to be an include file of course, can be any php you want. Hope that helps.