about 2 months ago - 2 comments
about 2 months ago - No comments
about 2 months ago - 1 comment
about 2 months ago - 1 comment
about 2 months ago - No comments
about 2 months ago - 1 comment
about 2 months ago - No comments
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 >
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 >
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 >