Introduction to Arrays
Hi there! Last lesson we were in middle of learning about looping. The last type of loop, is specific to arrays. Therefore, before we learn that type of looping, let’s learn about Arrays! What is an...
View ArticleIndexed Arrays
Hi there! Last lesson we introduced Arrays. Today we will begin discussing the first type of an array called the Indexed Array. You can create an indexed array in two different ways. The first way is...
View ArticleForeach Looping
Hi there! It’s been a few days since we met last, so I think it’s time to get right back into arrays! We talked about the first type of array last week – the Indexed Array. We are almost ready to talk...
View ArticleAssociative Arrays
Hi there! Today we will talk about the second type of array, the Associative array. The Associative array is an array that uses names that you assign them. You can create an associative array in one of...
View ArticleSorting Arrays in PHP
You can put as many elements as you want in an array. These elements can be sorted in alphabetical, numerical, descending or ascending order. We will learn a few different types of ways that arrays can...
View ArticleForm
Hi everyone! Today we will learn how to make a simple form in PHP. Here is an example of a form with two input fields (Written as HTML): <html> <body> <form action=”welcome.php”...
View ArticleMultidimensional Array!
Hi everyone! Going back a little while, we began talking about Arrays. We discussed that an Array is a single list of values/keys. Sometimes however, you might want to store more than one key in a...
View ArticleDate and Time in PHP!
Hi there! Today we are going to learn how you can write the date and time using PHP! We will learn a function called the PHP date() function. The function will be written out in the following format –...
View ArticleMore Time and Dates in PHP!
Hi everyone! Yesterday we began talking about writing out the date using PHP. Today we will get to time. Before we learn how to write out the time using PHP, I will quickly show you how you can write...
View ArticleGETing data
Hi Everyone! As I’m sure you all know, requests are the fundamentals of the web, so knowing how to handle them are a must. Today we’re going to be handling form submissions using the GET method. For...
View Article