PHP Backend Developer Roadmap
PHP runs WordPress, Drupal and MediaWiki, the software behind Wikipedia, and Laravel and Symfony are how teams build new applications in it. Before either framework, a PHP backend developer needs the language, SQL, a Linux terminal, Git and Docker. This path teaches them in that order, free, in your browser, with a certificate for each course.
237,871+ codders enrolled across these courses
509 lessons472 challenges2,925 quiz questions
- Beginner friendly
AI-assisted coding help
Hands-on interactive lessons
Audio narration on every lesson
Quizzes to test your knowledge
8 free certificates along the path
The PHP backend developer roadmap, step by step
Each step is an existing Coddy course, and the first step's Start button opens the PHP course. Take them in order, or start from the one you are missing: progress is saved per course either way.
- 1Step 13 sections, in order
- 2Step 2
SQL and databasesDedicated page
Start this stepStartSELECT,WHERE,JOIN,GROUP BYand subqueries against live tables, then the indexes and schema design that keep them fast. The queries carry over to the MySQL or MariaDB database WordPress requires, and they are what Eloquent and Doctrine send behind the scenes.StartDedicated page2 sections, in order - 3Step 3
Linux and the command lineDedicated page
Start this stepStartFiles and permissions, processes, pipes and the basics of bash. PHP runs on Linux servers behind Nginx or Apache, and a first deployment often fails on a permission: the web server cannot write to an upload or cache directory.StartDedicated page - 4Step 4
Git and version controlDedicated page
Start this stepStartCommits, branches, merging, conflicts, remotes and undoing mistakes. A Git history replaces editing files on the server over FTP: every change is reviewed, reversible and deployed from one place.StartDedicated page - 5Step 5
Docker and containersDedicated page
Start this stepStartImages, Dockerfiles, volumes and networking. A PHP application often runs as three containers: PHP-FPM, Nginx and MySQL. Docker starts that same stack on every laptop and server.StartDedicated page
Learn by Doing
Write real code, query databases, build websites, and master AI prompts. Our interactive lessons cover every skill modern developers need.
Build Your Streak
Stay consistent and watch your progress grow! Track your daily coding habit, protect your streak with freeze days, and earn rewards for showing up every day.
12 days streak
Return tomorrow to keep your streak!
January 2026
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
21
22
23
24
25
26
27
28
29
30
Double or Nothing
Day 5 of 7
Streak Freeze
2 left
Code Anywhere
Take your coding journey on the go! No setup, no downloads - just open and start coding. Available on iOS, Android and Web with 4.9 star ratings.
You're Not Alone
Compete on global leaderboards, invite friends to earn rewards, and celebrate each other's wins. Coding is better with friends!
Every way to learn
Read, listen, test yourself, ask the AI, or look up anything you've already covered. Every lesson meets you where you are.
A variable is a named container that stores a value you can reference later in your program.
In Python, you create one by writing the name, an equals sign, then the value you want to store.
The value can change over time - reassigning the name simply points it to a new value.
Earn a Certificate
Earn certificates for every course you complete. Add them to your LinkedIn profile and resume to showcase your coding expertise to employers.
Why learn backend development in PHP on Coddy
- A backend language first. PHP was built for one job, running on a server to answer web requests: WordPress, Drupal and Magento are PHP, and so is a large share of the web's server side.
- Modern PHP, typed and object-oriented. PHP 8.0 and 8.1 added union types,
match, named arguments, enums andreadonlyproperties, and Laravel and Symfony are built from classes and interfaces. The PHP course's Object Oriented Programming section is the part those frameworks assume. - SQL before Eloquent. Laravel's Eloquent and Doctrine, the ORM Symfony uses, write queries for you until a page gets slow; then you read the SQL, find the N+1 query and add an index. That is why SQL is step two.
- Graded, in the browser. No XAMPP and no Apache to configure: every PHP lesson ends in a challenge checked by tests, and when yours fails, Bugsy, the AI tutor, reads your code and the error and nudges you toward the fix. Each course ends with a free certificate.