INTERMEDIATE WEB DEVELOPMENT

INTERMEDIATE WEB DEVELOPMENT INTERMEDIATE WEB DEVELOPMENT

ENTRY LEVEL PROGRAMMING ESSENTIALS FOR NEW PROGRAMMERS

Welcome to “Entry Level Programming” for new developers. PHP, MySql and Apache will be the focus for these lessons. Learn how to write HTML with PHP.

The lessons provided are taught at an absolute beginner level. We want to build a solid foundation in your knowledge for future projects. A prerequisite to these lessons are the “Beginner Web Development Course“. Make sure that you complete that basic course before moving onto this programming in PHP course or have a basic understanding of HTML.

Programming Course Learning Highlights

After completing these courses you will be able to efficiently and effectively do the following.

  • Build a Website
  • Create Applications
  • Understand the Basics of Apache Servers
  • Comprehend the Basics of PHP
  • Know the basics of MySql

PHP 7 Operators Arithmetic Calculations Lesson 14

PHP 7 Operators Arithmetic Calculations Lesson 13

Php 7 operators are used for Arithmetic and Calculations. It is also used for comparing values. If we used Php 7 for arithmetic and calculations we would be using add, subtract, multiply, divide, modulus and exponents. Here are files from the last lesson. Here are files for this lesson. Php 7 Arithmetic Operators Examples + Read More

Php 7 Comparison Operator Video Instruction Code Examples Lesson 15

Php 7 Comparison Operator Video Instruction Code Examples Lesson 15

Php 7 Comparison Operators compare 2 or more values . There are several different ways to perform these operations. A “Php 7 comparison operator” will check to see if the values are equal, identical, greater than or less than each other. Let’s go over the different methods to use this handy tool. Files from last Read More

Php 7 Logical Operator AND, OR, XOR, NOT !, &&, || Lesson 16

Php 7 Logical Operator

The Php 7 logical operator help us to filter data before displaying it. Our choices are AND, OR, XOR, NOT !, && and ||. In the last lesson we talked about Comparison Operators and how they work. We need to understand the logic of a situation so we know what to display and how. We will Read More

Php 7 STATEMENTS IF ELSE ELSEIF LOGIC CODE EXAMPLES LESSON 17

Php 7 STATEMENTS IF ELSE ELSEIF LOGIC CODE EXAMPLES

Php 7 Statements include “if”, “else” and “elseif”. We logically consider the situation and use these Php 7 statements accordingly. Programming Php 7 statements is like “reasoning” something out. In this Php 7 tutorial we are going to use money and relationships to explain this process. File for this lesson.  Php 7 IF Statement A Php Read More

Php 7 Switch Statement Case Break Lesson 18

Php 7 Switch Statement Case Break

Php 7 Switch Statement operates a lot like IF Statements. Generally, you will only use switch statements when comparing one condition. This is what it was designed for and that is how we will use it. If we have multiple conditions to consider then use the IF Else Statement Operator. Here are the files for Read More

Php 7 While Loop Repeat Different Information Dynamically | Lesson 19

Php 7 While Loop Repeat Different Information Dynamically

In a “Php 7 While Loop” you can repeat different information dynamically when you compare it to a variable. A While loop will execute when a condition is “TRUE” in other words “matches the variable”. Here is what we are going to be learning in this lesson. While Do While The Php features we will be using Read More

Php 7 For Loop Foreach Loop Simple Explanations

Php 7 For Loop Foreach Loop Simple Explanations

“Php 7 for loop” and “foreach loops” will display a block of code for a number of times. We initialize the for loop with a parameter unlike what we did in the while loops. Next, we set the comparison operator and finally we increment the number of times the loop should run. Here are the Read More

CREATE EXPIRE DOWNLOAD LINK IN PHP MYSQL | BEST TUTORIAL

CREATE EXPIRE DOWNLOAD LINK IN PHP MYSQ

Ever wonder how to create a download link in PHP and then make it expire? Would you like to know how to expire a download link after a set number of times they download it? Do you want to know how to protect your files from people trying to steal your downloads? We are going Read More