Rising Trends In Computer Programming Platforms For 2022
Rising Trends In Computer Programming Platforms For 2022 In this article, we will discuss the rising trends in computer programming platforms for the year 2022. We will also touch on the skills that you need to learn in order to be ahead of the curve. Best Computer Programming Platform for Hiring Junior Developers There are […]
List of SQL queries
A list of commonly used MySQL queries to create and how to use database, create table, insert record, update record, delete record, select record, truncate table and drop table are given below. Create database: CREATE DATABASE test_database Create new table: CREATE TABLE user ( id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY, firstname VARCHAR(30) NOT NULL, lastname […]
Block Browser Back Button using ‘JS’
script to block the browser back button Just paste this following script in your victim web page and then save page and test it on your Browser
Block Right click on your web page
Block Right click on your web page To block right mouse click on your web page just copy the following link on your html page. Code:- “ function clickIE4(){ if (event.button==2){ alert(message); return false; } } function clickNS4(e){ if (document.layers||document.getElementById&&!document.all){ if (e.which==2||e.which==3){ alert(message); return […]