1
0
mirror of https://github.com/php/web-php.git synced 2026-03-29 18:52:08 +02:00
Files
archived-web-php/apachecon/s_lang5.php3
Rasmus Lerdorf 2424277ad8 Add main slides
1998-10-21 23:44:28 +00:00

16 lines
431 B
PHP
Executable File

<?php require "header.inc"?>
<h1>Branching Control Structures</h1>
<?example('<?if ($i < 0) {
echo "Negative.";
} else if ($i == 0) {
echo "Zero.";
} else {
echo "Positive.";
}?>');?>
<?example('<?switch($var) {
case 1: echo "The number 1."; break;
case "foo": echo "The string \'foo\'."; break;
default: echo "default"; break;
}?>');?>
<?php require "footer.inc"?>