Skip to content

Instantly share code, notes, and snippets.

@boo1ean
Created November 10, 2012 13:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save boo1ean/4051147 to your computer and use it in GitHub Desktop.
Save boo1ean/4051147 to your computer and use it in GitHub Desktop.
WTF
<?php
//User role checking for contacts
$contacts = 0;
$type = explode(',',$data['sp_user_type']);
$contactsArray = array('1','2','3','4','5','6','7','8','9','10');
foreach($contactsArray as $contactsArr){
if(in_array($contactsArr,$type)){
$contacts = 1 ;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment