Skip to Content
Beginning PHP 5.3
book

Beginning PHP 5.3

by Matt Doyle
October 2009
Beginner
836 pages
19h 37m
English
Wrox
Content preview from Beginning PHP 5.3

Chapter 4. Decisions and Loops

So far, you've learned that PHP lets you create dynamic Web pages, and you've explored some fundamental language concepts such as variables, data types, operators, expressions, and constants.

However, all the scripts you've written have worked in a linear fashion: the PHP engine starts at the first line of the script, and works its way down until it reaches the end. Things get a lot more interesting when you start introducing decisions and loops.

A decision lets you run either one section of code or another, based on the results of a specific test. Meanwhile, a loop lets you run the same section of code over and over again until a specific condition is met.

By using decisions and loops, you add a lot of power to your scripts, and you can make them truly dynamic. Now you can display different page content to your visitors based on where they live, or what buttons they've clicked on your form, or whether or not they're logged in to your site.

In this chapter you explore the various ways that you can write decision-making and looping code in PHP. You learn about:

  • Making decisions with the if, else, and switch statements

  • Writing compact decision code with the ternary operator

  • Looping with the do, while, and for statements

  • Altering loops with the break and continue statements

  • Nesting loops inside each other

  • Using decisions and looping to display HTML

Once you've learned the concepts in this chapter, you'll be well on your way to building useful, adaptable PHP scripts. ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

PHP and MySQL™ Phrasebook

PHP and MySQL™ Phrasebook

Christian Wenz
PHP 7 Programming Blueprints

PHP 7 Programming Blueprints

Jose Palala, Martin Helmich
PHP 5 Unleashed

PHP 5 Unleashed

John Coggeshall
Pro PHP Programming

Pro PHP Programming

Peter MacIntyre, Brian Danchilla, Mladen Gogala

Publisher Resources

ISBN: 9780470413968Purchase book