New: Complete Beginner's Guide to Coding is now available in Premium
Updated: Indian Govt Exam roadmaps now include salary breakdowns & timelines
Tip: Use the Career Hub to explore all career paths in one place
Tutorials PHP PHP Introduction

PHP Introduction

PHP

PHP (Hypertext Preprocessor) is a server-side scripting language. It runs on the server and generates HTML that is sent to the browser.

PHP powers WordPress, Facebook (originally), Wikipedia, and millions of websites.

Why Learn PHP?

  • Easy to learn for beginners
  • Huge job market in India (WordPress, Laravel)
  • Free and open source
  • Works on all operating systems

PHP Code Basics

PHP code is written inside <?php ... ?> tags. It can be embedded inside HTML.

Example — PHP
<?php
echo "Hello, World!";
echo "<br>";
echo "I am learning PHP!";
?>
Result
Hello, World!
I am learning PHP!