Last active
October 6, 2015 21:17
-
-
Save 01-Scripts/3054120 to your computer and use it in GitHub Desktop.
Include 01-Artikelsystem
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?PHP | |
$subfolder = "01scripts/"; // Unterverzeichnis | |
$modul = "01article"; // Modul- und Verzeichnisname (=ID-Name) | |
// ggf. ändern | |
// Hier ggf. weitere Parameter einfügen | |
include($subfolder."01module/".$modul."/01article.php"); | |
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?PHP | |
// Weitere mögliche Parameter sind: | |
$show['catid'] = "1,2,3"; // Nur bestimmte Kategorien ausgeben (kommasepariert) | |
$show['artid'] = 1; // Einzelnen Artikel / statische Seite ausgeben | |
$show['search'] = "Suchwort"; // Ausgabe der zu "Suchwort" gefundenen Beiträge | |
$show['page'] = 2; // Ausgabe der 2. Seite | |
$flag_utf8 = FALSE; // Setzen Sie $flag_utf8 = TRUE; falls Sie Ihre Seite UTF-8-kodiert ausgeben | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment