2014. szeptember 10., szerda

Egyszerű elágazás: if

Elágaztathatjuk a végrehajtást feltételtől függően.

<!DOCTYPE html PUBLIC
    "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>Listing 5.1 An if Statement</title>
</head>
<body>
<div>
<?php
$satisfied = "very";
if ( $satisfied == "very" ) {
    print "We are pleased that you are happy with our service";
    // register customer satisfaction in some way
}
?>
</div>
</body>
</html>


Eredmény:
We are pleased that you are happy with our service

Nincsenek megjegyzések:

Megjegyzés küldése