View Single Post
Old 11-22-2008, 03:09 PM  
Alky
Confirmed User
 
Alky's Avatar
 
Join Date: Apr 2002
Location: Houston
Posts: 5,651
probably a better way to do it then i did it...and i didnt test it
Code:
fuction chkArr($array) {
foreach($array as $k=>$v) {
if($v!=100) {
return False;
} else {
$didfind=True;
}
}
if($didfind==True) {
return true;
} else {
return false;
}
}
Alky is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote