This document provides an introduction to PHP, including:
- PHP is a widely-used open source scripting language used for server-side web development. PHP scripts are executed on the server and output HTML to browsers.
- Instructions are provided on installing PHP locally using XAMPP or WAMP servers.
- The basic syntax of PHP is explained, including how to write PHP code within HTML documents using <?php ?> tags and ending statements with semicolons.
- Examples demonstrate printing output, variables, comments, and the differences between echo and print statements.