PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
$hide = array('for_my_eyes_only', '123');
/*
do not rely on this, whoever you're hiding it from could insert:
$hide = array();
even if he did not have access to the file above.. he could also simply remove the array_diff below
*/
foreach(array_diff($hide, $list) as $key => $value) {
}