if ($_SERVER['PHP_AUTH_USER'] != 'jeff' && $_SERVER['PHP_AUTH_USER'] != 'marina' && $_SERVER['PHP_AUTH_USER'] != 'jflemay@hotmail.com' && $_SERVER['PHP_AUTH_USER'] != 'marina.lemay@hotmail.com' ) { die('no rights to read this page'); } ==== Events ==== * Mouse Events * onclick The event occurs when the user clicks on an element 2 * oncontextmenu The event occurs when the user right-clicks on an element to open a context menu 3 * ondblclick The event occurs when the user double-clicks on an element 2 * onmousedown The event occurs when the user presses a mouse button over an element 2 * onmouseenter The event occurs when the pointer is moved onto an element 2 * onmouseleave The event occurs when the pointer is moved out of an element 2 * onmousemove The event occurs when the pointer is moving while it is over an element 2 * onmouseover The event occurs when the pointer is moved onto an element, or onto one of its children 2 * onmouseout The event occurs when a user moves the mouse pointer out of an element, or out of one of its children 2 * onmouseup The event occurs when a user releases a mouse button over an element 2 * Keyboard Events * Event Description DOM * onkeydown The event occurs when the user is pressing a key 2 * onkeypress The event occurs when the user presses a key 2 * onkeyup The event occurs when the user releases a key 2 * Frame/Object Events * Event Description DOM * onabort The event occurs when the loading of a resource has been aborted 2 * onbeforeunload The event occurs before the document is about to be unloaded 2 * onerror The event occurs when an error occurs while loading an external file 2 * onhashchange The event occurs when there has been changes to the anchor part of a URL 3 * onload The event occurs when an object has loaded 2 * onpageshow The event occurs when the user navigates to a webpage 3 * onpagehide The event occurs when the user navigates away from a webpage 3 * onresize The event occurs when the document view is resized 2 * onscroll The event occurs when an element's scrollbar is being scrolled 2 * onunload The event occurs once a page has unloaded (for ) 2 * Form Events * Event Description DOM * onblur The event occurs when an element loses focus 2 * onchange The event occurs when the content of a form element, the selection, or the checked state have changed (for , ,