Statements and Semicolons in php

A statement is a collection of PHP code that does something. It can be as simple as a variable assignment or as complicated as a loop with multiple exit points. Here is a small sample of PHP statements, including function calls, assignment, and an if statement echo “Hello, world”;myFunction(42, “O’Reilly”);$a = 1;$name = “Elphaba”;$b = … Read more