Codebeispiel - Minimalbeispiel: Unterschied zwischen den Versionen
Aus DynPG-Wiki
K (hat „Code-Schnipsel Minimalbeispiel“ nach „Codebeispiel - Minimalbeispiel“ verschoben) |
K |
||
Zeile 8: | Zeile 8: | ||
<code>[php, N] | <code>[php, N] | ||
<?php | <?php | ||
+ | // DynPG einbinden | ||
require('../dynpg/getcontent.php'); | require('../dynpg/getcontent.php'); | ||
$GLOBALS["DynPG"]->SetParam_PathToRoot('../dynpg/'); | $GLOBALS["DynPG"]->SetParam_PathToRoot('../dynpg/'); | ||
Zeile 21: | Zeile 22: | ||
<body> | <body> | ||
<?php | <?php | ||
− | $GLOBALS["DynPG"]->SetParam_AG_Anytime(true); | + | $GLOBALS["DynPG"]->SetParam_AG_Anytime(true); // Gruppenliste immer anzeigen |
− | $GLOBALS["DynPG"]->Write_AllGroups(); | + | $GLOBALS["DynPG"]->Write_AllGroups(); // Gruppenliste ausgeben |
?> | ?> | ||
</body> | </body> |
Version vom 2. November 2010, 13:52 Uhr
→ Hauptartikel: DynPG in eine Webseite einbinden
Beschreibung: Hier wird eine einfache Gruppeliste ausgegeben.
Minimalbeispiel - Gruppenliste ausgeben
<?php // DynPG einbinden require('../dynpg/getcontent.php'); $GLOBALS["DynPG"]->SetParam_PathToRoot('../dynpg/'); ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US"> <head> <title>Minimalbeispiel</title> <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" /> </head> <body> <?php $GLOBALS["DynPG"]->SetParam_AG_Anytime(true); // Gruppenliste immer anzeigen $GLOBALS["DynPG"]->Write_AllGroups(); // Gruppenliste ausgeben ?> </body> </html>