June 22, 2019 Patrick Morrow PHP How to use password_hash() in PHP June 22, 2019 Patrick Morrow PHP Probably one of the most common features required by website owners is the ability to log in. Implementing a simple login system is not all that challenging. However, the security involved can be quite complex.
June 22, 2019 Patrick Morrow PHP How to Verify Passwords with password_verify() in PHP June 22, 2019 Patrick Morrow PHP In this lesson I will show you how to use password_verify() to validate a password from a user.
June 22, 2019 Patrick Morrow PHP Using User-Defined Functions in PHP June 22, 2019 Patrick Morrow PHP PHP has over 1000 built in functions. However, the power of being able to use your own user-defined functions adds real flexibility.
June 22, 2019 Patrick Morrow PHP How to Return Multiple Values from Functions in PHP June 22, 2019 Patrick Morrow PHP In this lesson we will look at how to return multiple values from functions in PHP.
June 22, 2019 Patrick Morrow PHP How to Sort Arrays in PHP June 22, 2019 Patrick Morrow PHP In this lesson we look at how to sort arrays (including associative arrays) in PHP.
June 22, 2019 Patrick Morrow PHP How to Sort Associative Arrays in PHP June 22, 2019 Patrick Morrow PHP In this lesson I will show you how to sort associative arrays in PHP.
June 22, 2019 Patrick Morrow PHP, Courses Learn PHP - Every Line of Code Explained June 22, 2019 Patrick Morrow PHP, Courses In this course you will learn how to code in PHP. Every line of code is explained, making this a truly unique course for beginners!
June 22, 2019 Patrick Morrow PHP How to Read a Text File Using PHP June 22, 2019 Patrick Morrow PHP In this lesson I will show you how to read the contents of a text file using PHP.
June 21, 2019 Patrick Morrow PHP How to Parse a JSON File in PHP June 21, 2019 Patrick Morrow PHP In this lesson I will show you how you can parse a JSON file and retrieve information from the object.
June 21, 2019 Patrick Morrow PHP How to Test if an email address is valid in php June 21, 2019 Patrick Morrow PHP When users enter an email address in a form it is quite useful to be able to validate that email, both for security and accuracy.