How to Install PHP on Ubuntu Thumbnail

How to Install PHP on Ubuntu

This tutorial will teach you how to install PHP on the Ubuntu operating system. This includes guides on setting it up for the Apache and Nginx webservers. PHP is a programming language that helps drive dynamic websites. Read More...

Check if a File Exists Using Python Thumbnail

Check if a File Exists Using Python

This tutorial takes you through how to check if a file exists using the Python programming language. It is crucial that check if a file exists if you plan on using them throughout your script. Failing to perform a check can result in fatal errors. Read More...

How to use PHP $_POST Global Variable Thumbnail

How to use PHP $_POST Global Variable

This guide will take you through the basics of using the PHP $_POST global variable for handling incoming POST data. You will likely need to use this variable if you plan on using HTML forms or any sort of form data submission via a POST request. Read More...

Using the JavaScript let Keyword Thumbnail

Using the JavaScript let Keyword

This tutorial will teach you how to declare a variable in JavaScript using the let keyword. A variable declared using let will respect the global, function, and block scopes. It also doesn't allow itself to be redeclared in the same scope. Read More...

Variables in PHP Thumbnail

Variables in PHP

This tutorial will take you through the basics of using variables in PHP. We will touch on using variable scopes, data types, naming conventions, and more. It is the perfect tutorial if you want to start learning how to code in PHP. Read More...

JavaScript delete Operator Thumbnail

JavaScript delete Operator

Learn how to use the delete operator in JavaScript. For example, you can use this operator to delete the properties of writeable objects. However, it doesn't instantly free up memory in JavaScript as it may in other programming languages. Read More...

Python Logical Operators Thumbnail

Python Logical Operators

In this tutorial, we will take you through each logical operator you can use in Python. A logical operator works based on the operands Boolean "true" or "false value. The operators are primarily used in conditional statements. Read More...

JavaScript Comma Operator Thumbnail

JavaScript Comma Operator

This guide will show you how to use the comma operator in JavaScript. This is a special operator that allows you to compound multiple expressions. The last expression in the chain will be the result that is returned. Read More...

Using the empty() Function in PHP Thumbnail

Using the empty() Function in PHP

In this tutorial, you will learn how to use the empty() function in PHP. This function checks whether a variable exists and has a valid value. This is useful for ensuring you have a valid value. It is especially useful when dealing with arrays. Read More...

How to use the PHP strlen() Function Thumbnail

How to use the PHP strlen() Function

This tutorial takes you through the basics of using the strlen function in a PHP script. The strlen function allows you to check the length of a given string. However, there are a few things you will need to be aware of. Read More...

JavaScript Ternary Operator Thumbnail

JavaScript Ternary Operator

In this tutorial, we will be showing you how to use the ternary operator within the JavaScript language. This conditional operator allows you to run an expression based on whether the specified condition is true or false. Read More...

JavaScript Bitwise Operators Thumbnail

JavaScript Bitwise Operators

In this tutorial, you will learn how to use bitwise operators in JavaScript. These operators allow you to modify numbers at a binary level. While dealing with binary can be overwhelming for beginners it is relatively straightforward to understand bitwise math. Read More...

JavaScript String Operators Thumbnail

JavaScript String Operators

In this tutorial, you will learn how to use string operators in JavaScript. String operators allow you to append one string to another. JavaScript will even attempt to convert non-strings to a string during concatenation. Read More...

JavaScript Logical Operators Thumbnail

JavaScript Logical Operators

In this guide, we will be showing you the various logical operators supported by JavaScript. A logical operator works based on the operands "true" or "false value. You can use these to inverse a logical result or check if multiple operands are true. Read More...

JavaScript Assignment Operators Thumbnail

JavaScript Assignment Operators

In this tutorial, you will learn how to use assignment operators in JavaScript. These operators are what allow you to assign a value to a variable. You can even adjust the value of a variable by performing various arithmetic. Read More...