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

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

How to Redirect in PHP Thumbnail

How to Redirect in PHP

This tutorial takes you through the process of using PHP to redirect a user whenever they hit a specific URL. There are many reasons why you may want to redirect a user, such as changing domains or moving from HTTP to HTTPS. Read More

How to Use the PHP header Function Thumbnail

How to Use the PHP header Function

This tutorial will take you through the basics of using the header function in PHP. You can use this function to set or alter HTTP headers within a PHP script. However, you will need to be aware of a few things before using the function. Read More

How to use Python Sets Thumbnail

How to use Python Sets

In this tutorial, we cover the basics of using sets in the Python programming language. We cover basics such as creating sets, adding items, deleting items, and using set operations. Read More

Guide to PHP Arrays Thumbnail

Guide to PHP Arrays

This tutorial takes you through creating, accessing, altering, and deleting array elements in the PHP programming language. An array is one of the most used data structures in modern programing languages. Read More

How to Use PHP foreach Loops Thumbnail

How to Use PHP foreach Loops

In this tutorial, we will discuss how to use and write a foreach loop in PHP. They are great for iterating through arrays or objects. Highly recommend learning how to use this type of loop. Read More

How to use a PHP Switch Statement Thumbnail

How to use a PHP Switch Statement

This tutorial shows you how to read and write a switch statement in PHP. We also go through some of the reasons why you may want to use a switch instead of a series of if-else statements. Read More

How to Use Python Lists Thumbnail

How to Use Python Lists

In this tutorial, I go through the basics of Python lists and how you can use them. We cover creating, accessing, copying, and deleting lists. You must learn lists if you wish to program using Python effectively. Read More