如果我尝试为我的网站成员设置一些条件。下面是我试图实现的方案。
if(upgraded member ) { allowed to cashout }
else (members from these countries){
some conditions here before they can request cashout
}
以下是我正在使用的代码的示例摘录
if($member[accounttype] == upgraded ) { $draw=1; }
elseif ($member[country] == "Pakistan"){
if ($Total >= $Required) {
$draw=1;
} }
我希望从数据库中获取countires列表 $ draw = 1表示允许提款,默认设置为0 请指导。
答案 0 :(得分:0)
您需要从数据库中将国家/地区列表填充到数组中,然后尝试对其进行比较并根据您的要求使用它。对于前者
如果您提取了像$country = array('Pakistan', 'China', 'India');
现在使用in_array();
if(in_array($member[country], $country)){
if ($Total >= $Required) {
$draw=1;
}
}