PHP Beispiele und Übungen: Code

<?php
  $titel = "PHP Grundelemente";
  $untertitel = "Strings in PHP";
?>

<?php
  $strvorname = "Hans"
  $strnachname = "Meier"
  $intalter = 16; 
  $strtotal = $strvorname . " " . $strnachname 
    . " ist " . $intalter . " Jahre alt.\n";
?>

<?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 $strtotal;?>
      </p>
      <p>
        <?php echo "Escaping von \" oder \\ innerhalb von Strings erfolgt mit <b>\\</b>\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