PHP Beispiele und Übungen: Code

<?php
  $titel = "PHP Grundelemente";
  $untertitel = "Hello World";
?>

<?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 "Hello World\n"; ?>
      </p>
      <p>
        <?php
          print ("HI HI HI!\n");
        ?>

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