Scroll to top
7 min read

Web development is multifaceted. A properly working website requires that things work with proper coordination on both the front-end (the web browser) and the back-end (the server). Creating an interactive feature on the front-end requires you to learn JavaScript. Similarly, working on the back-end requires you to learn a language like PHP or JavaScript. I've already written a post that provides a brief overview of what you can do with PHP.

In this tutorial, I'll help you get started with learning the basic concepts of PHP so that you can use it to build whatever kind of web apps you want.

Getting Started

The code you write in PHP will have to go inside a PHP file. This means that you need to have a basic understanding of what a PHP file is and what it does.

The fact that you can mix PHP and HTML to quickly create a functional website makes PHP one of the most beginner-friendly ways out there to develop a website. Learn how to use HTML within PHP.

Reading the above posts should help you get a rough idea of where and how you can write your own PHP code. Let's dive into the basics now.

PHP and Numbers

Many web development projects will require you to do at least some kind of mathematical computation. I've already written a few tutorials on this topic to help you cover the basics.

Arrays in PHP

Arrays are useful for a lot of things. You usually use them to store elements of the same kind together under one name. However, they can store almost anything you want. Arrays in PHP can be very simple with numerical indices or multi-dimensional and associative with non-numeric keys.

Here's a curated list of tutorials to help you learn the basics of arrays in PHP and how you can use a variety of PHP functions to work more efficiently with arrays.

  • Understanding Arrays in PHP—Read this post to learn about different types of arrays and common array functions in PHP.
  • Working with PHP Arrays in the Right Way—This tutorial will teach you about a bunch of functions and tricks that you can use to write more succinct code when dealing with PHP arrays.
  • How to Sort Arrays in PHP—It is almost inevitable that you will have to sort your data in some way when working with arrays. This tutorial will teach you different ways of doing exactly that. You will learn how to sort arrays by values or keys. It also explains how to sort multi-dimensional arrays or sort with user-defined functions.
  • Get the First and Last Elements of an Array in PHP—You will frequently need to access items at either the beginning or the end of an array in PHP. This tutorial will teach you how to access them without needing to know their keys.

Strings in PHP

You're probably already familiar with strings if you have done programming in other languages. PHP comes with a huge set of built-in functions that can help you accomplish a lot of common tasks very easily.

Here are a bunch of tutorials that explain how to do different tasks using these string functions in PHP.

  • How to Join Strings in PHP—This is a quick tip post to show you how to prepend, append, or join the text somewhere in the middle of a string in PHP.
  • How to Trim Strings in PHP—Different strings that you deal with will probably have some unwanted text that you want to remove. This post will show you how to do that in different scenarios.
  • How to Replace Strings in PHP—This tutorial will teach you how to replace a substring with some other text using a variety of options.
  • Generate Random Alphanumeric Strings in PHP—Read this tutorial if you are curious about generating random alphanumeric strings for usernames and passwords using built-in functions in PHP.

Learn More Basics

We can move on to some other miscellaneous topics now that you know how to handle numbers, arrays, and strings in PHP. Here are a bunch of tutorials that cover a wide range of topics.

Some "How To" Tutorials

There are a lot of other topics that you could learn about to get a better understanding of how to do things in PHP. This section contains a small list of such posts which don't fall inside a specific category.

  • How to Compare Dates in PHP—Follow this tutorial to learn how you can compare and find the difference between two given dates in PHP.
  • How to Work With Cookies in PHP—It is important that you have a basic understanding of handling cookies in PHP when creating websites. This tutorial will help you get a quick head start.
  • How to Use Sessions and Session Variables in PHP—Read this tutorial if you want to learn about sessions in PHP. It also briefly discusses the difference between sessions and cookies.
  • How to Parse JSON in PHP—JSON is a popular format for passing around information. This tutorial will teach you how to read JSON from a file in PHP and how to create your own JSON.

Learn PHP With a Free Online Course

If you want to learn PHP, check out our free online course on PHP fundamentals!

In this course, you'll learn the fundamentals of PHP programming. You'll start with the basics, learning how PHP works and writing simple PHP loops and functions. Then you'll build up to coding classes for simple object-oriented programming (OOP). Along the way, you'll learn all the most important skills for writing apps for the web: you'll get a chance to practice responding to GET and POST requests, parsing JSON, authenticating users, and using a MySQL database.

Final Thoughts

Learning is a continuous process. In this article, my aim was to help you get started by listing different tutorials that cover a variety of related topics. Reading them should help you gain a basic understanding of the PHP language. However, there are always more topics to learn and explore. Search Envato Tuts+ for much more about learning PHP!

Hopefully, all these tutorials will help you learn how to create something practical by writing your own PHP code.

Did you find this post useful?
Want a weekly email summary?
Subscribe below and we’ll send you a weekly email summary of all new Code tutorials. Never miss out on learning about the next big thing.
Looking for something to help kick start your next project?
Envato Market has a range of items for sale to help get you started.