Skip to content
Snippets Groups Projects
start.php 564 B
Newer Older
Eric Laufer's avatar
Eric Laufer committed
<?php

require_once('lib/class/start.class.php');
$Pay4Start = new START;

if ($grundconfig->popup_start == 0) {
	head("");
	echo $Pay4Start->StartAbruf();
	foot();
} else {
	echo '
	<script language="javascript">
	window.open(\'page/start_popup.php?key='.md5($_SESSION['uid']."-".date("d.m.Y H:i",time())).'\', \'sv\', \'width=244, height=100 scrollbar=no, status=no, resizable=no\')
	</script>
	';
}
$text = Classloader('texte');

Eric Laufer's avatar
Eric Laufer committed
head("Willkomen auf der Pay4Start von ".$grundconfig->seitenname);
echo $text->Awerbung('start');
Eric Laufer's avatar
Eric Laufer committed
foot();
?>