In this lesson, we add several changes and additions to the HTML in our application. These changes will add smoother pages changes and more pleasing user experience by providing an application feel. Additionally, we make PHP updates and additions to capture navigation click events to pull page content from our updated …
In this lesson we learn more about PHP Sessions and the cookies. Although a very short practical lesson there is a wealth of valuable understandings to grasp considering the information provided in the readings about sessions and session data attached to this lesson. For this lesson we will focus on …
In this lesson we will focus on creating a low-level login to allow us to capture users information and position them to interact with our site. Additionally we will be positioning our user to be able to manage their information in future lessons.
In this lesson we learn how to gather information from a MySQL Database with PHP. We add the user information to our profile page by pulling it from the database and displaying it in our page. Finally, we modify our menuBuilder function to include our account management page links based …
Overview In this lesson we will cover one of the many ways a database can be created; through using the CREATE DATABASE SQL Statement in phpMyAdmin. Additionally we will learn about the INSERT SQL Statement and how to create a table in phpMyAdmin using the CREATE TABLE SQL Statement. Things You …
In this lesson we focus on refactoring the code we have already created. We do this for several reasons but the most important of all is to be organized. It is difficult to code creatively in chaos. The more clarity there is the farther down the road you are able …
In this lesson we finish up our navigation menu by making a few small changes to the menuBuilder function, adding a few styles, and making a quick update in our header. This lesson demonstrates at a very high level the power that using recursion provides.