<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/getting-started.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'de',
  ),
  'this' => 
  array (
    0 => 'tutorial.php',
    1 => 'Ein kleines Tutorial',
    2 => 'Ein kleines Tutorial',
  ),
  'up' => 
  array (
    0 => 'getting-started.php',
    1 => 'Einf&uuml;hrung',
  ),
  'prev' => 
  array (
    0 => 'introduction.php',
    1 => 'Einf&uuml;hrung',
  ),
  'next' => 
  array (
    0 => 'tutorial.requirements.php',
    1 => 'Was brauche ich?',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'de',
    'path' => 'chapters/tutorial.xml',
  ),
  'history' => 
  array (
  ),
  'extra_header_links' => 
  array (
    'rel' => 'alternate',
    'href' => '/manual/en/feeds/tutorial.atom',
    'type' => 'application/atom+xml',
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="tutorial" class="chapter">
  <div class="info"><h1 class="title">Ein kleines Tutorial</h1>
<h2>Inhaltsverzeichnis</h2><ul class="chunklist chunklist_chapter"><li><a href="tutorial.requirements.php">Was brauche ich?</a></li><li><a href="tutorial.firstpage.php">Ihre erste PHP-erweiterte Seite</a></li><li><a href="tutorial.useful.php">Etwas N&uuml;tzliches</a></li><li><a href="tutorial.forms.php">Formulare verarbeiten</a></li><li><a href="tutorial.whatsnext.php">Und weiter?</a></li></ul>
</div>

  <p class="para">
   Auf diesen Seiten möchten wir Ihnen die Grundlagen von PHP in einem kleinen
   Tutorial vorstellen. Dieser Text behandelt nur das Erstellen von
   dynamischen Webseiten, obwohl PHP natürlich nicht nur dafür geeignet ist.
   Weitere Informationen finden Sie im Abschnitt
   <a href="introduction.php#intro-whatcando" class="link">Was kann PHP?</a>.
  </p>
  <p class="para">
   Mit PHP erweiterte Webseiten werden wie normale HTML-Seiten behandelt. Sie
   können sie genauso wie normale HTML-Seiten erstellen und bearbeiten.
  </p>

  

  

  

  

  
 </div>
<?php manual_footer($setup); ?>