PHP (PHP: Hypertext Preprocessor) is a server-side scripting language. Unlike HTML/CSS/JS which run in the browser, PHP runs on the server — it processes data, talks to databases, and sends back the result as HTML.
page.php<?php echo "Hello World!"; $name = "Merik"; echo "Welcome, " . $name; ?>
Every PHP statement ends with a ; semicolon. Variables start with $.