Ed2Go - Intermediate PHP and MySQL
Learn how to create an interactive online store complete with an online catalog of products, allowing customers to browse the catalog to select items, place them in a shopping cart, and complete an order. In this online course, you'll see how to create a commercial online store using the PHP programming language and the MySQL database server.
You'll walk through the steps for developing a complete online store Web application. During the course, you'll see step-by-step how to create all of the software and database objects used in the application. The application consists of two parts, an administrative Web application allowing a store manager to post new products, alter product information, and process customer orders, and a customer Web application allowing customers to browse the catalog of products, select products for purchase, and check out using a shopping cart. At the end of the course, you'll be able to use these code templates to create your own online store application.
Course Lessons
- Lesson 01 - Review the Basics of PHP and MySQL
- Lesson 02 - Advanced PHP Programming
- Lesson 03 - Advanced SQL Techniques
- Lesson 04 - Create Back-End Applications
- Lesson 05 - Create New Categories and Products
- Lesson 06 - Display Images
- Lesson 07 - Create a Storefront Web Application
- Lesson 08 - Create and Use a Shopping Cart
- Lesson 09 - Create a Checkout Web Page
- Lesson 10 - Use MySQL Transactions
- Lesson 11 - Generate Reports
- Lesson 12 - Use Object-Oriented Programming Techniques
- Index - Intermediate PHP and MySQL
- Final Exam - Intermediate PHP and MySQL
- My Final Exam Results- Intermediate PHP and MySQL
In today's fast-paced world, it's almost crucial for every type of business to have an Internet presence. In this lesson, you'll peek at behind-the-scenes components of a commercial-quality Web store application. You'll see how to use the PHP programming language to create the Web store storefront page, complete with product catalog and customer ordering system. You'll discover how Web stores use the popular MySQL database server to maintain the store inventory and track customer orders.
Because of the complexity of creating a Web store, this lesson will discuss some advanced topics in PHP programming. You'll create functions in your PHP programming code that you can use every time you need to perform a specific feature in your applications. You'll examine the PHP code required to manage and manipulate images within your Web site.
Complex Web applications often require complex database structures. Today, you'll explore some of the advanced features that the MySQL database server offers. You'll discover how to use the MySQL console to enter SQL commands, and build commands to create the application database objects. You'll manually create a database, user account, and all of the tables required for the application. You'll find out about some advanced features that you'll be using, such as creating foreign table key constraints and table views.
Every Web store has an administrative interface, which allows the store manager to create and manage the product catalog, as well as process customer orders. In this lesson, you'll dive into the Web store backend application, which allows the store manager to control the Web store environment. You'll examine how to force the store manager to log into the backend system, and how to restrict the system so only the logged-in manager can perform specific functions. You can use this basic backend template to create your own Web store management interfaces for other Web applications.
The most important feature in the Web store backend application is the ability to create the product catalog. In today's lesson, you'll learn how to incorporate images into your Web store application. You'll discover how to use the MySQL Binary Large Object (BLOB) data type to store images within the MySQL database. And you'll find out how to organize your product catalog by creating sections in the product catalog and assigning each product to a specific section.
After having a store full of products, your store manager will need to know how to manipulate existing product information. In this lesson, you'll build the backend Web pages required to allow the store manager to modify information in existing product database records.
In this lesson, you'll turn your attention to the storefront application. The storefront lays out the basic format for the entire Web store, and gently guides customers to the correct location. You'll see how to best organize and present your products in the store without overwhelming your customers with information while providing them with an easy path to obtaining the information they're looking for.
Once you have your customer in your Web store, you'll want them to purchase something. In this lesson, you'll discover how to create a shopping cart for your customers. You'll learn how to allow customers to select products to place in their shopping carts, and how to display shopping cart information for them to view and modify.
After allowing customers to place products in their shopping carts, the next most important feature is to allow them to check out. You'll create registration pages, to allow your customers to register as returning customers to make future checkout sessions easier. You'll also find out how to take steps to ensure that the data your customers enter in the registration process is valid, and how to protect it from prying eyes.
When a customer checks out and places an order, you must be able to process the data in your application. In this lesson, you'll walk through the PHP programming and MySQL database techniques required to perform this function. You'll also look at how to use database transactions to keep the information in your database tables synchronized so your data is accurate at all times.
With the bulk of the Web store application finished, you'll turn your attention to a few of the finer details that'll make your Web store more professional. First, you'll learn advanced MySQL searching techniques to help your customers find just what they're looking for. Next, you'll find out how to generate reports directly from your Web store database for your store manager. You'll discover how to extract the data in your database and produce fancy spreadsheet reports that would make any manager envious.
The PHP programming language allows you to incorporate object-oriented programming principles easily in your Web page code. In this lesson, you'll walk through the basic principles of object-oriented programming and how to use it in a Web environment. You'll learn how to incorporate the object-oriented database features in PHP in your Web applications. Finally, you'll create your own object-oriented programming classes to interact with your database table that you can use in any application.
Lesson 2 exercises
(These projects can only be viewed from a local WAMP server or a online server)
- PHP Associative array variable tests
- PHP Function test
- PHP Function factorial test
- PHP createimage test 1
- PHP createimage test 2
- PHP createimage test 3
- PHP createimage test 4
- PHP createimage test 5
- PHP createimage test 6
- PHP changeimage test 1