If you have no concept of what a table or a struct is, then you probably will not have understood the previous section. PHP sessions are simply arrays of data contained inside of an array variable. Think of it as a tree. As the tree grows, it has branches and leaves that multiply. Some branches grow on other bigger branches, and so forth. In a session, you can extend dimensions, which are levels at which data are stored. For example, an array with two dimensions in PHP would look like this:
"$categories['category1']['subcategory1'] = variable;"
"$categories['category1']['subcategory2'] = variable1;"
If you find this difficult, try playing around with examples of multidimensional arrays in PHP that you find around the Internet. You will probably find it better to get your hands dirty first and then understand the concept later.