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 | |
// MySQL-Einstellungen: | |
$host = "localhost"; //Host/Server ihrer Mysql-Datenbank | |
$database = "test"; //Datenbankname | |
$user = "user"; //Usernamen für Mysql-Datenbank | |
$passw = ""; //Passwort zur Mysql-Datenbank | |
$table = "mantis_plugin_source_changeset_table"; |
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 | |
$show['artid'] = "archiv"; | |
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
/* CSS der 01-Gallery www.01-scripts.de - Version 2.1.0 */ | |
/* Äußere Box für den gesamten Bildergalerie-Bereich - DIV selber (id = _01gallery) */ | |
#_01gallery{ | |
text-align:left; | |
} | |
.box_out{ | |
width: 100%; | |
margin: 0 auto; | |
color:#000; |
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
<form action="ZIELADRESSE" method="get"> | |
<input type="text" name="email" size="38" value="E-Mail-Adresse" class="input_text" /> | |
<input type="submit" name="send" value="Go" class="input_button" /> | |
<br /> | |
<input type="radio" name="action" value="add" checked="checked" />Eintragen | |
<input type="radio" name="action" value="edit" />Bearbeiten/Austragen | |
</form> |
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 = "01gbook"; // Modul- und Verzeichnisname (=ID-Name), | |
// ggf. ändern | |
// Hier ggf. weitere Parameter einfügen | |
include($subfolder."01module/".$modul."/01gbook.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 | |
$subfolder = "01scripts/"; // Unterverzeichnis | |
$modul = "01gallery"; // Modul- und Verzeichnisname (=ID-Name), | |
// ggf. ändern | |
// Hier ggf. weitere Parameter einfügen | |
include($subfolder."01module/".$modul."/01gallery.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 | |
$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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de"> | |
<head> | |
<title>Codeschnipsel: Zufällige Datei aus einem Ordner ausgeben - by 01-Scripts.de</title> | |
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" /> | |
<meta name="author" content="Michael Lorer - www.01-scripts.de" /> | |
<meta name="description" content="Folgender Codeschnipsel gibt zufällige Bilder oder Dateien aus einem festgelegten Ordner aus." /> |