-
unter seite weiß machen
-
obere seite gelb machen
- unten
- links
- unten
- rechts
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
.clearfix:after { | |
content:""; | |
clear:both; | |
display: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
mail( | |
"[email protected]", // recipient | |
"=?UTF-8?B?".base64_encode("ä ö ü ß")."?=", // subject | |
"ä ö ü ß", // content | |
"Content-type: text/plain; charset=utf-8\r\n" | |
."From: =?UTF-8?B?".base64_encode("ä ö ü ß")."?=<[email protected]>" // from | |
); |
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
RewriteEngine On | |
RewriteCond %{HTTPS} !=on | |
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] | |
<If "%{HTTPS} == 'on'"> | |
AuthUserFile /path/to/.htpasswd | |
AuthName "Interner Bereich" | |
AuthType Basic | |
require valid-user | |
</If> |
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
CREATE TABLE | |
user(id INT, score INT); | |
INSERT INTO | |
user(id, score) | |
VALUES | |
(1, 10), (2, 40), (3, 55), (4, 10), (5, 5), (6, 20), (7, 30), (8, 70), (9, 30); | |
SET @score_prev = NULL; | |
SET @cur_rank = 0; | |
SELECT id, score, CASE |
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
<div class="menu"> | |
<a href="#">Menüpunkt</a> | |
<ul> | |
<li> | |
<a href="#">Untermenüpunkt</a> | |
<ul> | |
<li>Unteruntermenüpunkt</li> | |
<li>Unteruntermenüpunkt</li> | |
<li>Unteruntermenüpunkt</li> | |
</ul> |
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
// without any response | |
header("Location: " . $_SERVER['REQUEST_URI']); | |
die(); | |
// with a response using GET | |
header("Location: " . parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH).'?response=foo'); | |
die(); |
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 | |
// unset | |
unset($_COOKIE['cookie']); setcookie('cookie', '', time() - 3600, '/'); | |
// set | |
setcookie('cookie', $value, time()+60*60*24*1, '/'); | |
$_COOKIE['cookie'] = $value; // immediately set it for current request | |
// get | |
$_COOKIE['cookie'] |
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
$db->setQuery($db->getQuery(true)->select("*")->from($db->quoteName('#__js_table'))->where($db->quoteName('ID').' = '.$db->quote(1)))->loadObject(); |
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
$db->setQuery($db->getQuery(true)->select("*")->from($db->quoteName('#__js_table'))->where($db->quoteName('ID').' = '.$db->quote(1))->order('pos ASC, ID ASC')->setLimit(10))->loadObjectList(); |