Services Work Learn About Contact
0/8
Lesson 1 of 8

What is PHP?

PHP stands for PHP: Hypertext Preprocessor. It is a server-side scripting language that runs on the web server before sending HTML to the browser.

PHP can generate dynamic pages, handle forms, interact with databases, and manage sessions. PHP code lives inside <?php ... ?> tags.

PHP
<?php
  echo "Hello, World!";
  $name = "Ali";
  echo "Welcome, " . $name;
?>
🧠

Quick Quiz

Answer correctly to unlock the next lesson.

Support the mission

This learning platform is 100% free: no ads, no tracking, no paywalls. If it helped you learn something useful, you can support future lessons or donate to Doctors Without Borders, which provides emergency medical care in crisis zones worldwide.

🎉

You completed PHP!

You finished all 8 lessons and quizzes. You now know the basics of PHP.