PHP Beispiele und Übungen: Code
<?php
$titel = "PHP Kontrollstrukturen";
$untertitel = "For-Schleife für Schriftgrösse";
?>
<?php include 'incdoctype.php'?>
<html>
<head>
<?php include 'incheader.php'?>
<title><?php echo "$titel: $untertitel"?></title>
</head>
<body>
<div class="main">
<h1><?php echo "$titel: $untertitel"?></h1>
<?php
for ($intCounter = 1; $intCounter <= 7; $intCounter++) {
echo "<p><font size=\"$intCounter\">Hallo Welt</font></p>\n";
}
?>
<?php include 'incfooter.php'?>
</div>
</body>
</html>
Demo
Zurück zur Liste mit PHP-Beispielen
Zurück zu www.ecotronics.ch
Impressum und Datenschutzerklärung