PHP Beispiele und Übungen: Code

<?php
  $titel = "PHP Grundelemente";
  $untertitel = "Variablen (externes Beispiel)";
?>

<?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>
      <p>
        <?php
        echo ("Ok I have \$num set to 5\n");
        echo "<br>";
        $num = 5;
        echo ("Now I add 1 to $num");
        echo "<br>";
        $num = $num + 1;
        echo "This should equal $num";
        ?>

      </p>
      <?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