How to debug PHP (without a debugger)
In this tutorial you will learn how to debug your PHP scripts without a debugger. Error reporting, variable and function debugging, and logging.
PHP Password Hashing tutorial
In this tutorial I show you how to perform PHP password encryption. You will learn how to use password_hash() and password_verify(), with step-by-step examples.
PHP JSON complete tutorial (with examples)
This is the definitive PHP JSON tutorial. Learn how to encode and decode JSON objects, set the JSON content-type, JSON validation and more. Examples included.
PHP Login with Sessions and MySQL: the Complete Tutorial
A complete PHP class you can download right away (examples included). Login with MySQL and Sessions, account registration, password security and more.
5 Bad Habits of PHP Developers (and How to Break Them)
What are the 5 worst PHP programming habits that I’ve seen during my work? And what is the easiest way to break them for good? Let’s find out…
How to use PHP with MySQL: the complete tutorial (with examples)
This is the definitive, step-by-step guide to learn how to use PHP with MySQL, including working examples with MySQLi and PDO.
How to check how much memory your PHP scripts use: a tutorial with examples
How to check how much system memory your PHP script is using with the memory_get_usage() and memory_get_peak_usage() functions.
What is PHP used for? 9 cool things you can do with PHP
Keep reading to see 9 amazing examples of how you can use PHP (besides creating web pages).You’ll be surprised to see how many things PHP can be used for.
A step-by-step, 5 days program to learn PHP from scratch (for absolute beginners)
A practical, 5 days program to learn the PHP basics in less than a week and be ready to write real applications, even if you have no coding experience.
PHPMailer complete tutorial with examples: how to send emails with PHP (updated in 2018 with Composer installation)
Master PHPMailer with this complete and updated 2018 tutorial: installation and setup steps (including Composer), PHPMailer class functionalities, error handling and Gmail SMTP configuration, all with working code examples.