Search "php"

PHP 17 - Constructing queries and web pages with mySQL

Learn to combine PHP concepts such as string substitution and control structures to perform CRUD on a database THIS VIDEO IS DEPRECATED AS CURRENTLY STUDENTS ARE LEARNING mySQLi.

PHP 14 - Planning a Database

Learn the process of planning a new database.

PHP 10 - Switch Statements

Learn to make decisions on multiple types of values such as deciding which treasure was dropped in a game

PHP 11 - Functions

Create user-defined blocks of code that are reusable an infinite number of times

PHP 12 - While Statements

Learn to code repeating blocks using a While statements

PHP 13 - For and Foreach

learn how to loop through a chunk of data, an array of data, and to skip over records while looping, as well as how to break out of a loop

PHP 16 - mySQL CRUD

CRUD = Create, Retrieve, Update, and Delete Records THIS VIDEO IS DEPRECRATED AS CURRENTLY THE STUDENTS ARE LEARNING mySQLI

PHP 15 - Connecting to a Database

Learn to create a file that will always connect to your database without interrupting the flow of your site THIS VIDEO IS DEPRECATED AS STUDENTS ARE CURRENTLY LEARNING mySQLI

PHP 08 - Constants and Booleans

Learn how constants differ from variables and how booleans can be used to say yes / no

PHP 01 - Intro

Learn what PHP is, it's history, and how to install and setup the XAMP package to prepare your PC for PHP use.

PHP 07 - Arrays

Learn how to use arrays, view contents, and when arrays are useful

PHP 06 - Intro to Forms Processing

Basic introduction to accepting user input, and processing based upon if the user entered data on the form or not. PER-REQUISITE KNOWLEDGE: HTML Forms

PHP 05 - Numbers and Math

Learn the various mathematical operators, and some math functions for equation processing

PHP 04 Working with Strings

Learn how to manipulate string data using PHP functions for clean user input, locating information, and securing with hash encryption

PHP 03 - Working with Data (Introduction)

Learn the basics of setting up variables, typing identifiers, and using concatenation

PHP 02 - Output

Learn how to output literal strings, concatenation them, and build a basic PHP output

PHP 09 - If Statements

Introduction to decision making with PHP IF statements