From fe46acb3577e1bc6f7d0fba06c3e57346ef1ae86 Mon Sep 17 00:00:00 2001 From: jrfnl Date: Thu, 11 Dec 2014 02:02:23 +0100 Subject: [PATCH] Add links to other useful resources and video tutorials --- _posts/16-08-01-Sites.md | 22 +++++++++++++++++++ _posts/16-09-01-Videos.md | 12 ++++++++++ .../{16-08-01-Books.md => 16-10-01-Books.md} | 0 pages/The-Basics.md | 1 + 4 files changed, 35 insertions(+) create mode 100644 _posts/16-08-01-Sites.md create mode 100644 _posts/16-09-01-Videos.md rename _posts/{16-08-01-Books.md => 16-10-01-Books.md} (100%) diff --git a/_posts/16-08-01-Sites.md b/_posts/16-08-01-Sites.md new file mode 100644 index 0000000..a5189dc --- /dev/null +++ b/_posts/16-08-01-Sites.md @@ -0,0 +1,22 @@ +--- +isChild: true +anchor: other_resources +title: Other Useful Resources +--- + +## Other Useful Resources {#other_resources_title} + +### Cheatsheets + +* [PHP Cheatsheets](http://phpcheatsheets.com/) - for variable comparisons, arithmetics and variable testing in various +PHP versions +* [PHP Security Cheatsheet](https://www.owasp.org/index.php/PHP_Security_Cheat_Sheet) + +### More best practices + +* [PHP Best Practices](https://phpbestpractices.org/) +* [Best practices for Modern PHP Development](https://www.airpair.com/php/posts/best-practices-for-modern-php-development) + +### PHP universe + +* [PHP Developer blog](http://blog.phpdeveloper.org/) diff --git a/_posts/16-09-01-Videos.md b/_posts/16-09-01-Videos.md new file mode 100644 index 0000000..35f2a00 --- /dev/null +++ b/_posts/16-09-01-Videos.md @@ -0,0 +1,12 @@ +--- +isChild: true +anchor: videos +title: Video Tutorials +--- + +## Video Tutorials {#videos_title} + +### Paid Videos + +* [Standards and Best practices](http://teamtreehouse.com/library/standards-and-best-practices) +* [PHP Training on Pluralsight](http://www.pluralsight.com/search/?searchTerm=php) diff --git a/_posts/16-08-01-Books.md b/_posts/16-10-01-Books.md similarity index 100% rename from _posts/16-08-01-Books.md rename to _posts/16-10-01-Books.md diff --git a/pages/The-Basics.md b/pages/The-Basics.md index b98d542..782a734 100644 --- a/pages/The-Basics.md +++ b/pages/The-Basics.md @@ -36,6 +36,7 @@ if (strpos('testing', 'test') !== false) { // true, as strict comparison was * [Comparison operators](http://php.net/language.operators.comparison) * [Comparison table](http://php.net/types.comparisons) +* [Comparison cheatsheet](http://phpcheatsheets.com/index.php?page=compare) ## Conditional statements