function in_array( what, where ){
var a=false;
for(var i=0;i<where.length;i++){
if(what == where[i]){
a=true;
break;
}
}
return a;
}
in_array()
Leave a Reply
You must be logged in to post a comment.
function in_array( what, where ){
var a=false;
for(var i=0;i<where.length;i++){
if(what == where[i]){
a=true;
break;
}
}
return a;
}
You must be logged in to post a comment.