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
<!-- Spalten mit gleicher Höhe in CSS --> | |
<div id="wrapper"> | |
<div id="maincontent">...</div> | |
<div id="sidebar">...</div> | |
</div> | |
#wrapper{ | |
margin:0 auto; | |
width:600px; | |
} |
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
// Changing Text with innerHTML | |
// http://www.tizag.com/javascriptT/javascript-innerHTML.php | |
<script type="text/javascript"> | |
function changeText(){ | |
document.getElementById('boldStuff').innerHTML = 'Fred Flinstone'; | |
} | |
</script> | |
<p>Welcome to the site <b id='boldStuff'>dude</b> </p> | |
<input type='button' onclick='changeText()' value='Change Text'/> |
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 session_start(); ?> | |
<!-- Einfaches Kontaktformular --> | |
<?php | |
include_once("kontaktformular.php"); | |
echo kontaktformular(array("[email protected]","[email protected]"),"Kontaktformular","form1"); | |
?> | |
<!-- Kontaktformular mit Datei-Upload --> | |
<!-- Another contact-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
/** | |
* FancyUpload - Flash meets Ajax for powerful and elegant uploads. | |
* | |
* Updated to latest 3.0 API. Hopefully 100% compat! | |
* | |
* @version 3.0 | |
* | |
* @license MIT License | |
* | |
* @author Harald Kirschner <http://digitarald.de> |
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
/* | |
01-Artikelsystem V3 - Copyright 2006-2008 by Michael Lorer - 01-Scripts.de | |
Lizenz: Creative-Commons: Namensnennung-Keine kommerzielle Nutzung-Weitergabe unter gleichen Bedingungen 3.0 Deutschland | |
Weitere Lizenzinformationen unter: http://www.01-scripts.de/lizenz.php | |
Modul: 01article | |
Dateiinfo: JavaScript-Funktionen | |
*/ | |
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
/* Datei im Verzeichnis 01module/01gallery/templates/javas.js */ | |
/* | |
01-Gallery V2 - Copyright 2003-2009 by Michael Lorer - 01-Scripts.de | |
Lizenz: Creative-Commons: Namensnennung-Keine kommerzielle Nutzung-Weitergabe unter gleichen Bedingungen 3.0 Deutschland | |
Weitere Lizenzinformationen unter: http://www.01-scripts.de/lizenz.php | |
Modul: 01gallery | |
Dateiinfo: Frontend-BB-Code-JavaScript-Funktion | |
*/ |
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
/* | |
01-Gästebuch - Copyright 2009 by Michael Lorer - 01-Scripts.de | |
Lizenz: Creative-Commons: Namensnennung-Keine kommerzielle Nutzung-Weitergabe unter gleichen Bedingungen 3.0 Deutschland | |
Weitere Lizenzinformationen unter: http://www.01-scripts.de/lizenz.php | |
Modul: 01gbook | |
Dateiinfo: Frontend-JavaScript-Funktion | |
*/ | |
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
/* | |
01-Newsletter - Copyright 2009-2011 by Michael Lorer - 01-Scripts.de | |
Lizenz: Creative-Commons: Namensnennung-Keine kommerzielle Nutzung-Weitergabe unter gleichen Bedingungen 3.0 Deutschland | |
Weitere Lizenzinformationen unter: http://www.01-scripts.de/lizenz.php | |
Modul: 01newsletter | |
Dateiinfo: JavaScript-Funktionen | |
#fv.1100# | |
*/ |
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 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de"> | |
<?PHP | |
//Beispiel-Datei zur Nutzung von echo_galpics.php | |
include_once("echo_galpics.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 des 01-Artikelsystems www.01-scripts.de - Version 3.2.0 */ | |
/* Äußere Box für den gesamten Artikel-Bereich - DIV selber (id = 01article) */ | |
#_01article{ | |
text-align:left; | |
} | |
.box_out{ | |
width: 100%; | |
margin: 0 auto; | |
text-align:left; |
OlderNewer