1
0
mirror of https://github.com/restoreddev/phpapprentice.git synced 2025-08-11 09:14:44 +02:00

Continuing transition to hugo

This commit is contained in:
Andrew Davis
2019-07-13 08:48:55 -05:00
parent e09557cf2c
commit 2ae912aada
36 changed files with 224 additions and 401 deletions

View File

@@ -1,3 +1,11 @@
+++
title = "Conditionals"
description = "Checking the if before the what"
tags = ["php", "conditionals", "if", "switch"]
slug = "conditionals"
previous = "boolean-logic.html"
next = "loops.html"
+++
When writing code, there will be times when you need to perform actions only under certain circumstances.
There are several ways to control execution in PHP.
We will start with an if statement.