View 01-api-request
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
https://www.googleapis.com/youtube/v3/playlistItems?part=snippet&maxResults=50&playlistId={DEINE_PLAYLIST_ID}&fields=items%2Fsnippet&key={DEIN_API_KEY} |
View 1-check-assoc.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 | |
function isAssocArray($array){ | |
return array_keys($array) !== range(0, count($array) - 1); | |
} | |
$mein_array = array("DE" => "Deutschland", "EN" => "England"); //Beispielarray | |
//Prüfung und Ausgabe | |
echo (isAssocArray($mein_array) ? "isAssoc" : "false"); //gibt isAssoc aus | |
$mein_array = array("Deutschland", "England"); //Beispielarray |
View 1-simple-array.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 | |
$zahlen = array(11,22,33,44); | |
$laender = array("England", "Deutschland", "Kanada", "Schweiz"); | |
?> |
View 01-simple-form.html
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 id="phpform" method="post" action="kontakt.php" autocomplete="off"> | |
<p><label for="name">Name</label> | |
<input type="text" name="name" value=""></p> | |
<p><label for="email">Email</label> | |
<input type="text" name="email" value=""></p> | |
<p><label for="message">Nachricht</label><br /> | |
<textarea name="message" rows="8"></textarea></p> |
View 01-animate-sample.html
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
<!-- Headbereich --> | |
<link rel="stylesheet" type="text/css" href="css/animate.min.css"> | |
<!-- HTML Element --> | |
<div id="logo" class="animated rotateIn">Company XY</div> |
View 01-thumb-grid.html
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
<ul class="thumbnails" id="hover-cap-4col"> | |
<li class="span3"> | |
<div class="thumbnail"> | |
<div class="caption"> | |
<h4>Caption Title</h4> | |
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt.</p> | |
<p><a href="#" class="btn btn-inverse" rel="tooltip" title="Preview"><i class="icon-eye-open"></i></a> <a href="#" rel="tooltip" title="Visit Website" class="btn btn-inverse"><i class="icon-share"></i></a></p> | |
</div> | |
<img src="http://placehold.it/600x400" alt="ALT NAME"> | |
</div> |
View 01-simple-loop.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 | |
$alledateien = scandir('files'); //Ordner "files" auslesen | |
foreach ($alledateien as $datei) { // Ausgabeschleife | |
echo $datei."<br />"; //Ausgabe Einzeldatei | |
}; | |
?> |
View 01-form.html
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 id="form" action="form2email.php" method="post"> | |
<label for="name">Name</label> | |
<input id="name" name="name" size="25" type="text" /> | |
<label for="email">Email</label> | |
<input id="email" name="email" size="25" type="text" /> | |
<label for="betreff">Betreff</label> | |
<input id="betreff" name="betreff" size="25" type="text" /> | |
<label for="nachricht">Nachricht</label> | |
<textarea id="nachricht" cols="50" rows="6" name="nachricht"></textarea> | |
<input id="submit" name="submit" type="submit" value="Formular senden" /> |
View burlington.css
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
background-color: #6d695c; background-image: repeating-linear-gradient(120deg, rgba(255,255,255,.1), rgba(255,255,255,.1) 1px, transparent 1px, transparent 60px), repeating-linear-gradient(60deg, rgba(255,255,255,.1), rgba(255,255,255,.1) 1px, transparent 1px, transparent 60px), linear-gradient(60deg, rgba(0,0,0,.1) 25%, transparent 25%, transparent 75%, rgba(0,0,0,.1) 75%, rgba(0,0,0,.1)), linear-gradient(120deg, rgba(0,0,0,.1) 25%, transparent 25%, transparent 75%, rgba(0,0,0,.1) 75%, rgba(0,0,0,.1)); background-size: 70px 120px; |
View .htaccess
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
# ---------------------------------------------------------------------- | |
# | Komprimierung und Caching | | |
# ---------------------------------------------------------------------- | |
# Serve resources with far-future expires headers. | |
# | |
# (!) If you don't control versioning with filename-based | |
# cache busting, you should consider lowering the cache times | |
# to something like one week. | |
# |
NewerOlder