PHP Beispiele und Übungen: Code

<?php
  $titel = "PHP Kontrollstrukturen";
  $untertitel = "Benutzerdefinierte Funktion";

?>

<?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
        $intzahl = 5;
        $strzahl = "7";
        $strtext = "text";

        function funquadriere($varwert) {
          $intresultat = 0;
          if (is_numeric($varwert)) {
            $intresultat = $varwert * $varwert;
          }
          return $intresultat;
        }

        echo "$intzahl  *  $intzahl = "
          . funquadriere($intzahl) . "<br />\n";
        echo "$strzahl  *  $strzahl = "
          . funquadriere($strzahl) . "<br />\n";
        echo "$strtext  *  $strtext = "
          . funquadriere($strtext) . "<br />\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