init
This commit is contained in:
commit
72a26edcff
22092 changed files with 2101903 additions and 0 deletions
36
index_blank.php
Normal file
36
index_blank.php
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
<?php
|
||||
if (!empty($_GET['l']))
|
||||
$language = $_GET['l'];
|
||||
else {
|
||||
$lang = getenv('HTTP_ACCEPT_LANGUAGE');
|
||||
$lang = preg_replace('/(;q=[0-9]+.[0-9]+)/i','',$lang);
|
||||
$tmp = substr($lang, 0, 2);
|
||||
$language = (($tmp=='de') || ($tmp=='es') || ($tmp=='en')) ? $tmp : 'en';
|
||||
}
|
||||
if ($language == 'de')
|
||||
$title = 'Willkommen!';
|
||||
else if ($language == 'es')
|
||||
$title = 'Bienvenido!';
|
||||
else
|
||||
$title = 'Welcome!';
|
||||
?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="robots" content="noindex,nofollow" />
|
||||
<meta name="audience" content="all" />
|
||||
<meta name="doc-type" content="web page" />
|
||||
<meta name="author" content="Bitpalast GmbH Deutschland" />
|
||||
<title><?=$title?></title>
|
||||
</head>
|
||||
<frameset cols="*">
|
||||
<frame src="https://preiswerter-webserver-de.bitpalast.net/parking.php" scrolling="auto" noresize="noresize" />
|
||||
<noframes>
|
||||
<body>
|
||||
Your browser does not support frames
|
||||
</body>
|
||||
</noframes>
|
||||
</frameset>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue