Crus4

logo

How to Declare a Variable in PHP

How to Declare a Variable in PHP Variables are containers that temporary holds any type of value. To declare a Variable in PHP, we have to use a $ sign followed by the the variable name and assign it to any value. Here is a Syntax. Syntax In an above syntax you have get an […]

PHP Basic Syntax

PHP Basic Syntax Unlike HTML, CSS and JavaScript whose scripts are executed on the browser, PHP script is executed on the Server and the result is sent back on the web browser. PHP is an open-source programming language, that is widely used to build dynamic websites. All PHP files are saved with an extension of […]

How to Install XAMPP Server on Windows 10

How to Install XAMPP Server on Windows 10 In order to run our PHP code we must have PHP, MySQL and Apache Server installed and configured on our system. But to make our work easier we will install a third-party software XAMPP Server. This XAMPP server will automatically install and configure all these three software’s […]

What are Relational Operators in Python

What are Relational Operators in Python Relational Operators in Python are used to compare two values using Comparison Operators and return a result in Boolean values, either ‘True’ or ‘False’. As the name suggests, Relational Operators are used to determine the relationship between two operands. There are mainly six commonly used Relational Operators in Python. […]

Introduction to PHP

Introduction to PHP PHP is a short for Hypertext Preprocessor. PHP is the most popular server-side scripting language for Web Development. It was created by Rasmus Lerdorf around 1990s, since then it becomes one of the popular languages for building dynamic websites. Before you learn PHP, make sure you have enough knowledge of HTML, CSS […]

What are Classes and Objects in Python

What are Classes and Objects in Python In Python, Classes and Objects are fundamental concepts in object oriented programming (OOP). With the help of Classes and Objects we can model real-world entities and their behaviors in the code. Here is what classes and objects are: Python Classes A Class is a blueprint or template for […]

Scanning in Ethical Hacking

Scanning in Ethical Hacking Scanning is the Second Phase of Ethical Hacking. In this phase, an Ethical Hacker finds a way to get access to the system using the information they collected during the Reconnaissance Phase. Here an Ethical Hacker uses various tools like Nmap, Wireshark, in order to get succeed in their mission. Port […]

How to Add Search Bar in HTML

How to Add Search Bar in HTML Adding a search bar to your HTML page is very important. With the help of search bar, users can reach to any page of your website by simply searching for a specific keyword. To create a search bar on our HTML page we will use an HTML <input> […]

Reconnaissance Explained: First Phase of Ethical Hacking

Reconnaissance Explained: First Phase of Ethical Hacking Reconnaissance is the first phase of Ethical Hacking. In this Phase a hacker gathers as much information as possible about an organization or a target system, in order to identify potential vulnerabilities. Reconnaissance is also known as Footprinting and Information Gathering. There are mainly two types of Reconnaissance: […]

Python Functions (A Beginner’s Guide)

Python Functions (A Beginner’s Guide) Python Functions are a block of code that is designed to repeatedly perform a specific task. We can write a group of statements inside a function which only execute when we call. We can call a function as many times we want, this makes our code shorter and easy to […]