Skip to content

Instantly share code, notes, and snippets.

<!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="en" lang="en">
<body>
<h1>Hallo</h1>
<div id="action"></div>
package {
import flash.display.MovieClip;
import flash.display.Sprite;
public class testMask extends Sprite
{
public function testMask()
{
//Das ist die 100x10 Pixel große Maske
<?php
$connection = mysql_connect('localhost', 'root', '');
if (!$connection) {
echo "Verbindung konnte nicht hergestellt werden.";
} else {
CREATE TABLE `bkp_guestbook` LIKE `guestbook`;
class Blubb2 {
function __constuctor() {
echo "HU";
}
}
@FlorianH
FlorianH / gist:667510
Created November 8, 2010 09:06
Doctype und HTML-Tag für ein "XHTML 1.0 transitional"-Dokument
<!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">
$test123123123 = "uadhsuiashdu";

FooBar

Lorem Ipsum dfdfgdf

function slug($string)
{
$string = strtolower($string);
$string = str_replace(array('&auml;','&uuml;','&ouml;'), array('ä', 'ü', 'ö'), $string);
$string = str_replace(array('ä', 'ü', 'ö'), array('ae', 'ue', 'oe'), $string);
$string = str_replace('&', '-und-', $string);
$string = str_replace('/', '-oder-', $string);
$string = str_replace('@', '-at-', $string);
$string = str_replace('ß', '-ss-', $string);
$string = convert_accented_characters($string);