summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid T. Sadler <davidtsadler@googlemail.com>2021-01-15 13:31:51 +0000
committerDavid T. Sadler <davidtsadler@googlemail.com>2021-01-15 13:31:51 +0000
commitd67e696f1fd46e8a2d2f27dd56551c6ddc93fbcb (patch)
tree208fd728d8d8aa897b7a2d3e8c707121fa8f091f
parentc218d9a2b7be6f4d02fa5419a1eacb2160a893e5 (diff)
Update main PHP 8 tutorial post
-rw-r--r--source/_posts/php_8_tutorials.md17
1 files changed, 16 insertions, 1 deletions
diff --git a/source/_posts/php_8_tutorials.md b/source/_posts/php_8_tutorials.md
index 9c86167..c9bb97b 100644
--- a/source/_posts/php_8_tutorials.md
+++ b/source/_posts/php_8_tutorials.md
@@ -2,7 +2,22 @@
extends: _layouts.post
section: content
title: PHP 8 Tutorials
-description:
+description: A collection of PHP 8 tutorials for beginner and intermediate developers.
tags: [PHP]
---
+## Introduction
+
+Below are links to the PHP 8 tutorials that I have written. They are collected here for easy reference.
+
+All example code used in the tutorials are available in a [GitHub repository](https://github.com/davidtsadler/php-tutorial-examples) for you to clone and follow along with.
+
+## Motivation
+
+These tutorials are for you if you are new to programming or if you are familiar with other programming languages and are looking to get to know PHP 8. They are written in a way that assumes you are either a beginner or intermediate developer.
+
+Each tutorial covers a singe topic and is short and to the point. They don't cover less used features of the language, and don't go into to much detail regarding any gotchas or weird quirks.
+
+Example code is small and demonstrates a single principal. They are written so that they can be copied and pasted or entered quickly into an editor without any fuss. Code is meant to be ran from the terminal. A web server or database is not needed to be installed. For those examples that require running the code in a browser the internal web server provided by PHP 8 is used.
+
+These tutorials are not meant to replace the [manual](https://www.php.net/manual/en/index.php).