PHP Video Tutorial 6: Newlines in Strings
No comments yet.
No trackbacks yet.
PHP Video Tutorial 8: Comparison and Logical Operators
about 2 months ago - 1 comment
PHP Video Tutorial 7: If-Else Statements
about 2 months ago - 2 comments
PHP Video Tutorial 5: Variable Types
about 2 months ago - 1 comment
PHP Video Tutorial 4: Variables and Constants
about 2 months ago - 1 comment
PHP Video Tutorial 3: Basic Syntax and Comments
about 2 months ago - No comments
PHP Video Tutorial 2: Includes and Requires
about 2 months ago - 1 comment
PHP Video Tutorial 1: What PHP is and How it works
about 2 months ago - No comments
The Basics of PHP – Part 3
about 3 months ago - No comments
Welcome to part 3 of these basics of PHP tutorials. In this part, we are going to learn how to make if statements.
The syntax for an if statement look like this:
123if (condition) {
//Run this code if condition is true
}
Where it says “condition” we insert a Boolean expression, an expression that either has More >
The Basics of PHP – Part #2
about 4 months ago - 2 comments
If you’re new to PHP make sure you to go back and read the first part of this tutorial before continuing.
In this tutorial we are going to learn about how to get data from an HTML form (inputted by a user) so that we can use that data in a PHP script.
There are two methods More >
The Basics of PHP
about 5 months ago - 1 comment
PHP is a scripting language that is widely used on the web. If you know another programming language it’ll be a piece of cake. If not, you’re still in luck because it’s pretty easy to learn.
What it does
PHP is a server-side language, meaning the actual PHP code is interpreted by the server, not More >



