PHP Back to Basics 3: Arrays
In this tutorial we will be looking at arrays, which are extremely widely used in PHP. Data is often returned in the form of an array, for example when you read records from a database, or reading the data entered into an HTML form which has been submitted by the user.
We'll start by looking at what exactly an array is, and then look at the methods which can be used to create or add data to an array. We then look at the various ways you can work with data held in the form of an array, working through each element of the array in turn, and merging the data from two arrays into one.
Finally, we look at sorting data held in an array, so that the data is transformed into alphabetical or numerical order.
Read More