Crew algemeen |
|
Er zit een klein foutje in de functie van ButtonMan, dit moet werken:
<?php
function countrycheck($land){
$countryarray=array("au"=>"Austria","be"=>"Belgium");// als je alle landen wilt gebruik dan deze array -> http://www.sitemasters.be/?pagina=scripts/scripts&cat=20&id=1093
while (list ($key, $value) = each ($countryarray)) {
if($key == $land)
{
$country=$value;
return $country;
break;
}
}
}
?>
<?php function countrycheck($land){ $countryarray=array("au"=>"Austria","be"=>"Belgium");// als je alle landen wilt gebruik dan deze array -> http://www.sitemasters.be/?pagina=scripts/scripts&cat=20&id=1093 while (list ($key, $value) = each ($countryarray)) { if($key == $land) { $country=$value; return $country; break; } } } ?>
each ($land) moest zijn each ($countryarray)
Edit:
Bij mij gaf ie ook deze fout:
Warning: Variable passed to each() is not an array or object |