<?php
function ckmkeys($keys,$arr) {
foreach ($keys as $key)
if (!array_key_exists($key,$arr))
return false;
return true;
}
?>