How to disable all key of keyboard for online test module including combination key(ctr+esc) in php
You need to do this in javascript, you can use:
$(document).keydown(function(e) { return false; });