danieljgraham Posted September 5, 2010 Share Posted September 5, 2010 Hi There, I just wanted to share a really cool way of managing check boxes. For instance you could use them for user access functions etc For you to read the values in PHP, this returns a true or false (1 or 0) public function checkAccess($required) { // The value of the box your after....e.g......64 $m_access = $_SESSION['login_Access']; // This is where you store the checkbox value if ($required == 1 ) { if($m_access & $required) { return true; } } else { if(($m_access & $required) / $required == 1) { return true; } } return false; } or if((1024 & 64) / 64 == 1) { return true; } This function will always return a unique value as per the box checked. Hope people find it useful. Daniel [attachment deleted by admin] Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.