3v4l.org

run code in 300+ PHP versions simultaneously
<?php ob_start("ob_gzhandler"); session_start(); $cache_on_off = 1; //Cachen an oder aus 1=on/ 0=off $out_time_files = 24; //Verfallsdatum der gecachten HTML-Dateien in Stunden $out_time_news = 12; //Zeit in Stunden bis ein News-cachefile erneuert wird $main_path = ($_SERVER['PHP_SELF']);//echo $main_path; //Pfad incl. Dateiname zBsp.(/helipeter/index.php) $cache_path = "de/cache/"; $text_genaue_informationen="Um eine schnelle und reibungslose Bearbeitung Deiner Anfragen zu gewährleisten, bitten wir um möglichst genaue Informationen."; $text_auto_informationen="Der folgende Text wird Deiner Nachricht automatisch beigefügt:"; $text_name="Name "; $text_firma="Firma "; $text_telefon="Telefon "; $text_mobiltelefon="Mobil "; $text_strasse="Strasse "; $text_plz="PLZ "; $text_ort="Ort "; $text_email="Email "; $text_email2="Email wiederholen"; $text_betreff="Betreff "; $text_mitteilung="Mitteilung "; $text_grundkenntnisse="Vorhandene Kenntnisse "; $text_erforderliche_angaben=" erforderliche Angaben"; $text_anfahrt="Anfahrt"; $text_zur_karte="zur Karte..."; $text_absenden="absenden"; $m_empty_grundkenntnisse="<p class=\"alert alert-danger\" role=\"alert\"><i class=\"fa fa-chevron-up\"></i> Keine Grundkenntnisse ausgewählt!</p>"; $m_empty_name="<p class=\"alert alert-danger\" role=\"alert\"><i class=\"fa fa-chevron-up\"></i> Kein Name eingegeben!</p>"; $m_empty_message="<p class=\"alert alert-danger\" role=\"alert\"><i class=\"fa fa-chevron-up\"></i> Keine Nachricht eingegeben!</p>"; $m_empty_email="<p class=\"alert alert-danger\" role=\"alert\"><i class=\"fa fa-chevron-up\"></i> Emailadresse erforderlich!</p>"; $m_empty_phone = "<p class=\"alert alert-danger\" role=\"alert\"><i class=\"fa fa-chevron-up\"></i> Keine Telefonnummer angegeben!</p>"; $m_invalid_email="<p class=\"alert alert-danger\" role=\"alert\"><i class=\"fa fa-chevron-up\"></i> Emailadresse fehlerhaft!</p>"; $m_empty_email2="<p class=\"alert alert-danger\" role=\"alert\"><i class=\"fa fa-chevron-up\"></i> Keine Emailwiederholung eingegeben!</p>"; $m_diff_email="<p class=\"alert alert-danger\" role=\"alert\"><i class=\"fa fa-chevron-up\"></i> Emailadressen sind nicht identisch!</p>"; $m_empty_subject="<p class=\"alert alert-danger\" role=\"alert\"><i class=\"fa fa-chevron-up\"></i> Kein Betreff angegeben!</p>"; $m_thank_you="<h3 class=\"alert alert-success\" role=\"alert\"><span class=\"fa fa-envelope\"> Vielen Dank für Deine Nachricht! Sie wurde erfolgreich übermittelt.</h3>"; $text_choose_day="Bester Tag für Rückruf"; $text_choose_hour="Beste Uhrzeit für Rückruf"; $m_empty_termin="<p class=\"alert alert-danger\" role=\"alert\"><i class=\"fa fa-chevron-up\"></i>Kein Termin vorgeschlagen/ ausgewählt!</p>"; $text_termin_1="Terminvorschlag 1"; $text_termin_2="Terminvorschlag 2"; $text_termin_3="Terminvorschlag 3"; $text_zur_startseite="Zurück zur Startseite"; $text_fehler_seite_nicht_gefunden = "<span class=\"alert alert-danger\" role=\"alert\">FEHLER 404 - Seite konnte nicht gefunden werden</span>"; $text_tippfehler_pruefen="Moeglicherweise sind Sie hier weil: <center><li>die angefragte Seite nicht mehr existiert</li> <li>die angefragte Seite verschoben wurde</li> <li>Sie 404 - Error Seiten mögen :-)</li></center>"; $text_language = "de"; if (is_array($_SESSION) && array_key_exists('time', $_SESSION)) { $g_zeit = 60*55; //55 Minuten, dann neu einloggen, nur für nicht bezahlte Tester //echo "Probezugang"; if (time() - $_SESSION['time'] > $g_zeit) { //echo "Probe/ Test\n"; header('Location: login.html'); $_SESSION = array(); // Falls die Session gelöscht werden soll, löschen Sie auch das // Session-Cookie. // Achtung: Damit wird die Session gelöscht, nicht nur die Session-Daten! if (ini_get("session.use_cookies")) { $params = session_get_cookie_params(); setcookie(session_name(), '', time() - 42000, $params["path"], $params["domain"], $params["secure"], $params["httponly"]); } // Zum Schluß, löschen der Session. session_destroy(); } } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html lang="de"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <meta http-equiv="X-UA-Compatible" content="IE=edge"/> <meta name="viewport" content="width=device-width, initial-scale=1"/> <!--sphider_noindex--> <? /* Includes */ include('expand/config.inc.php'); // Included die Config für Loginsystem include('expand/functions.inc.php'); // Included die Funktionsdatei mit den ganzen Funktionen für Loginsystem include('expand/run.inc.php'); // Included die Run-Datei mit welcher die Funktionen ausgeführt werden nach bestimmten Bedingungen für Loginsystem include("funktionen/funktionen.php"); // Included die Config für den Rest der Seite $stoerung_text = (mainout('stoerung_text')); $begriffe = array(); if (isset ($_REQUEST['section'])){ $section = ($_REQUEST['section']); } if ($section == "welcome"){ header("Location: http://www.heli-planet.de"); } $o = ""; $s = ""; $s = array(); if (logon()) { $pl = userout('rank'); }else{ if(is_crawler()){ $pl = '3'; }else{ $pl = '0'; } } // NUR für nicht eingeloggte User aufrufbar ######## if(!logon()){ if(mainout('regist') == 1){ $s[] = 'regist'; } if(mainout('pwv') == 1){ $s[] = 'pwv'; } $s[] = 'login'; } // Für alle Nutzer die Dateien entsprechend dem Permission Level aufrufbar machen ############# $sql = ("SELECT dateien FROM 1_hp WHERE perm_level <= '$pl'"); $result = mysqli_query ($mysqli, $sql); while ($array_result = mysqli_fetch_array($result)) { $s[] = $array_result['dateien']; } // ############################################## // section ermitteln ########################### if(isset($_GET['section'])) { $section =($_GET['section']); }else{ $section = "welcome"; } $dateiname = "cache-".$section.".htm"; // Cache Name vergeben // ################################################## // Eingeloggt und MBZAHLUNG als seite gespeichert, dann if(logon()) { if (($sel=="mbzahlung") or ($sel=="mbzahlung_vorab")){ $section = "profil"; $o = "profil"; } if ($sel == 'freetime'){ $section = 'schon_eingeloggt'; } if ($section == 'login'){ $section = 'schon_eingeloggt'; } } // ################################################## $sql = "SELECT * FROM 1_hp WHERE dateien = '$section'"; $result = mysqli_query($mysqli, $sql); $row = mysqli_fetch_assoc($result); $pdes = $row['description']; $pkey = $row['keywords']; $path = $row['path']; //Dateipfad $dateien = $row['dateien']; //Section $titel = $row['titel']; $description = $row['description']; $keywords = $row['keywords']; ?> <!--/sphider_noindex--> <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> <meta name="Author" content="Webdesign Peter Henning. Alle Rechte vorbehalten"/> <meta name="description" content="<? if ($pdes !="") {echo $pdes;} else {echo "Modellhelikopter, Hubschrauber, heli, Modellflugschule, Flugschule, RC Helikopter";} ?>"/> <meta name="keywords" content="<? if ($pkey !="") {echo $pkey;} else {echo "Heli, Helikopter, Copter, Hubschrauber, Flugschule, ferngesteuert, fliegen lernen, RC Heli kaufen,";}?>"/> <!--sphider_noindex--> <meta name="Publisher" content="Peter Henning"/> <meta name="Copyright" content="Peter Henning"/> <meta name="Page-topic" content="RC, Modellbau, Hubschrauber, Helikopter, Helikopter fliegen, Helicopter, Flugschule, Service"/> <meta name="Audience" content="Alle"/> <meta name="Content-language" content="DE"/> <meta name="robots" content="index,follow"/> <meta name="revisit-after" content="5 days"/> <meta name="expires" content="5 days"/> <link rel="icon" href="/favicon.ico"/> <!-- Desktop Icons für Apple definieren --> <link rel="apple-touch-icon" href="images/icons/touch-icon-iphone.png"> <link rel="apple-touch-icon" sizes="76x76" href="images/icons/touch-icon-ipad.png"> <link rel="apple-touch-icon" sizes="120x120" href="images/icons/touch-icon-iphone-retina.png"> <link rel="apple-touch-icon" sizes="152x152" href="images/icons/touch-icon-ipad-retina.png"> <!--/sphider_noindex--> <title><? echo $titel." ".userout('username');?></title> <!--sphider_noindex--> <!-- Bootstrap core CSS --> <link href="css/bootstrap.css" rel="stylesheet"/> <!-- Custom styles for this template --> <link href="css/offcanvas.css" rel="stylesheet"/> <!-- Bootstrap min CSS --> <!--<link href="http://www.heli-planet.de/css/bootstrap.min.css" rel="stylesheet">--> <!-- Back to top Stylesheet --> <!-- <link href="http://www.heli-planet.de/css/back_to_top_style.css" rel="stylesheet"/> //eingefügt in offcanvas.css ####--> <!-- Loginsystem CSS --> <!-- <link href="http://www.heli-planet.de/css/loginsystem.css" rel="stylesheet"/>--> <!-- Social CSS --> <!-- <link href="http://www.heli-planet.de/css/social.css" rel="stylesheet"/> --> <!--<link href="http://www.heli-planet.de/suchen/include/js_suggest/SuggestFramework.css" rel="stylesheet" type="text/css"/>--> <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> <!-- Begin Cookie Consent plugin by Silktide - http://silktide.com/cookieconsent --> <script type="text/javascript"> window.cookieconsent_options = {"message":"Diese Website verwendet Cookies, um die Dienste ständig zu verbessern und bestimmte Features zu ermöglichen. Indem Sie hier fortfahren, stimmen Sie dieser Verwendung zu. <br> This website uses cookies to ensure you get the best experience on our website","dismiss":"OK!","learnMore":"Info","link":"http://www.heli-planet.de/coockiconsent.html","theme":"dark-floating"}; </script> <!-- End Cookie Consent plugin --> </head> <? require "funktionen/funktionen.php"; require "funktionen/begriffe.php"; ?> <body> <!-- child of the body tag --> <p id="top-link-block" class="hidden"> <a href="#top" class="btn btn-primary" onclick="$('html,body').animate({scrollTop:0},'slow');return false;"> <i class="fa fa-chevron-up"></i><br/> Back to Top </a> </p> <? require "includes/navigation_top.php"; ?> <!--/sphider_noindex--> <div class="container"> <div class="row row-offcanvas row-offcanvas-right"> <div class="col-xs-6 col-sm-3 sidebar-offcanvas" id="sidebar"> <!--sphider_noindex--> <? require "includes/navigation_main.php"; ?> </div> <div class="container"> <div class="col-xs-12 col-sm-9"> <p class="pull-right visible-xs"> <button type="button" class="btn btn-primary btn-sm" data-toggle="offcanvas"><i class="fa fa-angle-left"></i> Menü <i class="fa fa-angle-right"></i></button> </p> <div class="row"> <div class="page-header" > <h1> <!--/sphider_noindex--> <? echo $titel;?> <!--sphider_noindex--> </h1> <? if (mainout('stoerung') == "1"){ if (mainout('stoerung_color') == "0"){ echo "<p class = \"alert alert-success\">"; }else{ if (mainout('stoerung_color') == "1"){ echo "<p class = \"alert alert-warning\">"; }else{ if (mainout('stoerung_color') == "2"){ echo "<p class = \"alert alert-danger\">"; } } } echo $stoerung_text."</p>"; } ?> </div> <? include "social/teilen.php"; ?> <div class="col-xs-12"> <? echo $last_next_mnl?> </div> <div class="col-xs-12"> <? echo $error; include "includes/google_add/google_2.php";?> <br /> </div> </div> <!--/sphider_noindex--> <!-- BOF Include der Dateien--> <? if (file_exists($path)) { if(in_array($section, $s)){ include $path; }else{ $forbidden = dbout('path','dateien','forbidden', 'hp'); include $forbidden; } } if (!file_exists($path)) { $incl = dbout('path','dateien','404', 'hp'); include $incl; } ?> <!--sphider_noindex--> <? include "includes/google_add/google_2.php";?> </div> <!--/.sidebar-offcanvas--> </div> <!--/.row--> </div> <hr> <footer> <p> <i class="fa fa-copyright"></i> Peter Henning - Heli-Planet.de - Modellbau und Flugschule - 2011-2015</p> </footer> </div> <!--/.container--> <!-- Bootstrap core JavaScript ================================================== --> <!-- Placed at the end of the document so the pages load faster --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <!-- <script type="text/javascript" src="http://www.heli-planet.de/js/jquery.min.js"></script>--> <!--<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>--> <!--<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/1.0.9/cookieconsent.min.js"></script>--> <!-- <script type="text/javascript" src="http://www.heli-planet.de/dist/js/bootstrap.min.js"></script>--> <!-- IE10 viewport hack for Surface/desktop Windows 8 bug --> <!-- <script type="text/javascript" src="http://www.heli-planet.de/docs/assets/js/ie10-viewport-bug-workaround.js"></script>--> <script type="text/javascript" src="http://www.heli-planet.de/js/custom.js"></script> <!-- <script type="text/javascript" src="http://www.heli-planet.de/suchen/include/js_suggest/SuggestFramework.js"></script>--> <script type="text/javascript">window.onload = initializeSuggestFramework; </script> </body> </html> <!-- Custom Fonts --> <link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"/>
Finding entry points
Branch analysis from position: 0
2 jumps found. (Code = 46) Position 1 = 53, Position 2 = 56
Branch analysis from position: 53
2 jumps found. (Code = 43) Position 1 = 57, Position 2 = 97
Branch analysis from position: 57
2 jumps found. (Code = 43) Position 1 = 65, Position 2 = 97
Branch analysis from position: 65
2 jumps found. (Code = 43) Position 1 = 74, Position 2 = 95
Branch analysis from position: 74
2 jumps found. (Code = 43) Position 1 = 110, Position 2 = 113
Branch analysis from position: 110
2 jumps found. (Code = 43) Position 1 = 115, Position 2 = 118
Branch analysis from position: 115
2 jumps found. (Code = 43) Position 1 = 124, Position 2 = 129
Branch analysis from position: 124
1 jumps found. (Code = 42) Position 1 = 135
Branch analysis from position: 135
2 jumps found. (Code = 43) Position 1 = 139, Position 2 = 155
Branch analysis from position: 139
2 jumps found. (Code = 43) Position 1 = 144, Position 2 = 146
Branch analysis from position: 144
2 jumps found. (Code = 43) Position 1 = 151, Position 2 = 153
Branch analysis from position: 151
1 jumps found. (Code = 42) Position 1 = 168
Branch analysis from position: 168
2 jumps found. (Code = 44) Position 1 = 173, Position 2 = 165
Branch analysis from position: 173
2 jumps found. (Code = 43) Position 1 = 176, Position 2 = 180
Branch analysis from position: 176
1 jumps found. (Code = 42) Position 1 = 181
Branch analysis from position: 181
2 jumps found. (Code = 43) Position 1 = 187, Position 2 = 200
Branch analysis from position: 187
2 jumps found. (Code = 47) Position 1 = 189, Position 2 = 191
Branch analysis from position: 189
2 jumps found. (Code = 43) Position 1 = 192, Position 2 = 194
Branch analysis from position: 192
2 jumps found. (Code = 43) Position 1 = 196, Position 2 = 197
Branch analysis from position: 196
2 jumps found. (Code = 43) Position 1 = 199, Position 2 = 200
Branch analysis from position: 199
2 jumps found. (Code = 43) Position 1 = 230, Position 2 = 232
Branch analysis from position: 230
1 jumps found. (Code = 42) Position 1 = 233
Branch analysis from position: 233
2 jumps found. (Code = 43) Position 1 = 236, Position 2 = 238
Branch analysis from position: 236
1 jumps found. (Code = 42) Position 1 = 239
Branch analysis from position: 239
2 jumps found. (Code = 43) Position 1 = 261, Position 2 = 283
Branch analysis from position: 261
2 jumps found. (Code = 43) Position 1 = 266, Position 2 = 268
Branch analysis from position: 266
1 jumps found. (Code = 42) Position 1 = 281
Branch analysis from position: 281
2 jumps found. (Code = 43) Position 1 = 295, Position 2 = 310
Branch analysis from position: 295
2 jumps found. (Code = 43) Position 1 = 300, Position 2 = 302
Branch analysis from position: 300
1 jumps found. (Code = 42) Position 1 = 310
Branch analysis from position: 310
2 jumps found. (Code = 43) Position 1 = 315, Position 2 = 323
Branch analysis from position: 315
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 323
Branch analysis from position: 302
2 jumps found. (Code = 43) Position 1 = 315, Position 2 = 323
Branch analysis from position: 315
Branch analysis from position: 323
Branch analysis from position: 310
Branch analysis from position: 268
2 jumps found. (Code = 43) Position 1 = 273, Position 2 = 275
Branch analysis from position: 273
1 jumps found. (Code = 42) Position 1 = 281
Branch analysis from position: 281
Branch analysis from position: 275
2 jumps found. (Code = 43) Position 1 = 280, Position 2 = 281
Branch analysis from position: 280
2 jumps found. (Code = 43) Position 1 = 295, Position 2 = 310
Branch analysis from position: 295
Branch analysis from position: 310
Branch analysis from position: 281
Branch analysis from position: 283
Branch analysis from position: 238
2 jumps found. (Code = 43) Position 1 = 261, Position 2 = 283
Branch analysis from position: 261
Branch analysis from position: 283
Branch analysis from position: 232
2 jumps found. (Code = 43) Position 1 = 236, Position 2 = 238
Branch analysis from position: 236
Branch analysis from position: 238
Branch analysis from position: 200
Branch analysis from position: 197
Branch analysis from position: 194
Branch analysis from position: 191
Branch analysis from position: 200
Branch analysis from position: 180
2 jumps found. (Code = 43) Position 1 = 187, Position 2 = 200
Branch analysis from position: 187
Branch analysis from position: 200
Branch analysis from position: 165
2 jumps found. (Code = 44) Position 1 = 173, Position 2 = 165
Branch analysis from position: 173
Branch analysis from position: 165
Branch analysis from position: 153
Branch analysis from position: 146
Branch analysis from position: 155
Branch analysis from position: 129
2 jumps found. (Code = 43) Position 1 = 132, Position 2 = 134
Branch analysis from position: 132
1 jumps found. (Code = 42) Position 1 = 135
Branch analysis from position: 135
Branch analysis from position: 134
2 jumps found. (Code = 43) Position 1 = 139, Position 2 = 155
Branch analysis from position: 139
Branch analysis from position: 155
Branch analysis from position: 118
Branch analysis from position: 113
Branch analysis from position: 95
Branch analysis from position: 97
Branch analysis from position: 97
Branch analysis from position: 56
filename:       /in/6EaiI
function name:  (null)
number of ops:  327
compiled vars:  !0 = $cache_on_off, !1 = $out_time_files, !2 = $out_time_news, !3 = $main_path, !4 = $cache_path, !5 = $text_genaue_informationen, !6 = $text_auto_informationen, !7 = $text_name, !8 = $text_firma, !9 = $text_telefon, !10 = $text_mobiltelefon, !11 = $text_strasse, !12 = $text_plz, !13 = $text_ort, !14 = $text_email, !15 = $text_email2, !16 = $text_betreff, !17 = $text_mitteilung, !18 = $text_grundkenntnisse, !19 = $text_erforderliche_angaben, !20 = $text_anfahrt, !21 = $text_zur_karte, !22 = $text_absenden, !23 = $m_empty_grundkenntnisse, !24 = $m_empty_name, !25 = $m_empty_message, !26 = $m_empty_email, !27 = $m_empty_phone, !28 = $m_invalid_email, !29 = $m_empty_email2, !30 = $m_diff_email, !31 = $m_empty_subject, !32 = $m_thank_you, !33 = $text_choose_day, !34 = $text_choose_hour, !35 = $m_empty_termin, !36 = $text_termin_1, !37 = $text_termin_2, !38 = $text_termin_3, !39 = $text_zur_startseite, !40 = $text_fehler_seite_nicht_gefunden, !41 = $text_tippfehler_pruefen, !42 = $text_language, !43 = $g_zeit, !44 = $params, !45 = $stoerung_text, !46 = $begriffe, !47 = $section, !48 = $o, !49 = $s, !50 = $pl, !51 = $sql, !52 = $result, !53 = $mysqli, !54 = $array_result, !55 = $dateiname, !56 = $sel, !57 = $row, !58 = $pdes, !59 = $pkey, !60 = $path, !61 = $dateien, !62 = $titel, !63 = $description, !64 = $keywords, !65 = $last_next_mnl, !66 = $error, !67 = $forbidden, !68 = $incl
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    2     0  E >   INIT_FCALL                                               'ob_start'
          1        SEND_VAL                                                 'ob_gzhandler'
          2        DO_ICALL                                                 
    4     3        INIT_FCALL                                               'session_start'
          4        DO_ICALL                                                 
    6     5        ASSIGN                                                   !0, 1
    7     6        ASSIGN                                                   !1, 24
    8     7        ASSIGN                                                   !2, 12
    9     8        FETCH_R                      global              ~74     '_SERVER'
          9        FETCH_DIM_R                                      ~75     ~74, 'PHP_SELF'
         10        ASSIGN                                                   !3, ~75
   10    11        ASSIGN                                                   !4, 'de%2Fcache%2F'
   11    12        ASSIGN                                                   !5, 'Um+eine+schnelle+und+reibungslose+Bearbeitung+Deiner+Anfragen+zu+gew%C3%A4hrleisten%2C+bitten+wir+um+m%C3%B6glichst+genaue+Informationen.'
   12    13        ASSIGN                                                   !6, 'Der+folgende+Text+wird+Deiner+Nachricht+automatisch+beigef%C3%BCgt%3A'
   13    14        ASSIGN                                                   !7, 'Name+'
   14    15        ASSIGN                                                   !8, 'Firma+'
   15    16        ASSIGN                                                   !9, 'Telefon+'
   16    17        ASSIGN                                                   !10, 'Mobil+'
   17    18        ASSIGN                                                   !11, 'Strasse+'
   18    19        ASSIGN                                                   !12, 'PLZ+'
   19    20        ASSIGN                                                   !13, 'Ort+'
   20    21        ASSIGN                                                   !14, 'Email+'
   21    22        ASSIGN                                                   !15, 'Email+wiederholen'
   22    23        ASSIGN                                                   !16, 'Betreff+'
   23    24        ASSIGN                                                   !17, 'Mitteilung+'
   24    25        ASSIGN                                                   !18, 'Vorhandene+Kenntnisse+'
   25    26        ASSIGN                                                   !19, '+erforderliche+Angaben'
   26    27        ASSIGN                                                   !20, 'Anfahrt'
   27    28        ASSIGN                                                   !21, 'zur+Karte...'
   28    29        ASSIGN                                                   !22, 'absenden'
   29    30        ASSIGN                                                   !23, '%3Cp+class%3D%22alert+alert-danger%22+role%3D%22alert%22%3E%3Ci+class%3D%22fa+fa-chevron-up%22%3E%3C%2Fi%3E+Keine+Grundkenntnisse+ausgew%C3%A4hlt%21%3C%2Fp%3E'
   30    31        ASSIGN                                                   !24, '%3Cp+class%3D%22alert+alert-danger%22+role%3D%22alert%22%3E%3Ci+class%3D%22fa+fa-chevron-up%22%3E%3C%2Fi%3E+Kein+Name+eingegeben%21%3C%2Fp%3E'
   31    32        ASSIGN                                                   !25, '%3Cp+class%3D%22alert+alert-danger%22+role%3D%22alert%22%3E%3Ci+class%3D%22fa+fa-chevron-up%22%3E%3C%2Fi%3E+Keine+Nachricht+eingegeben%21%3C%2Fp%3E'
   32    33        ASSIGN                                                   !26, '%3Cp+class%3D%22alert+alert-danger%22+role%3D%22alert%22%3E%3Ci+class%3D%22fa+fa-chevron-up%22%3E%3C%2Fi%3E+Emailadresse+erforderlich%21%3C%2Fp%3E'
   33    34        ASSIGN                                                   !27, '%3Cp+class%3D%22alert+alert-danger%22+role%3D%22alert%22%3E%3Ci+class%3D%22fa+fa-chevron-up%22%3E%3C%2Fi%3E+Keine+Telefonnummer+angegeben%21%3C%2Fp%3E'
   34    35        ASSIGN                                                   !28, '%3Cp+class%3D%22alert+alert-danger%22+role%3D%22alert%22%3E%3Ci+class%3D%22fa+fa-chevron-up%22%3E%3C%2Fi%3E+Emailadresse+fehlerhaft%21%3C%2Fp%3E'
   35    36        ASSIGN                                                   !29, '%3Cp+class%3D%22alert+alert-danger%22+role%3D%22alert%22%3E%3Ci+class%3D%22fa+fa-chevron-up%22%3E%3C%2Fi%3E+Keine+Emailwiederholung+eingegeben%21%3C%2Fp%3E'
   36    37        ASSIGN                                                   !30, '%3Cp+class%3D%22alert+alert-danger%22+role%3D%22alert%22%3E%3Ci+class%3D%22fa+fa-chevron-up%22%3E%3C%2Fi%3E+Emailadressen+sind+nicht+identisch%21%3C%2Fp%3E'
   37    38        ASSIGN                                                   !31, '%3Cp+class%3D%22alert+alert-danger%22+role%3D%22alert%22%3E%3Ci+class%3D%22fa+fa-chevron-up%22%3E%3C%2Fi%3E+Kein+Betreff+angegeben%21%3C%2Fp%3E'
   38    39        ASSIGN                                                   !32, '%3Ch3+class%3D%22alert+alert-success%22+role%3D%22alert%22%3E%3Cspan+class%3D%22fa+fa-envelope%22%3E+Vielen+Dank+f%C3%BCr+Deine+Nachricht%21+Sie+wurde+erfolgreich+%C3%BCbermittelt.%3C%2Fh3%3E'
   39    40        ASSIGN                                                   !33, 'Bester+Tag+f%C3%BCr+R%C3%BCckruf'
   40    41        ASSIGN                                                   !34, 'Beste+Uhrzeit+f%C3%BCr+R%C3%BCckruf'
   41    42        ASSIGN                                                   !35, '%3Cp+class%3D%22alert+alert-danger%22+role%3D%22alert%22%3E%3Ci+class%3D%22fa+fa-chevron-up%22%3E%3C%2Fi%3EKein+Termin+vorgeschlagen%2F+ausgew%C3%A4hlt%21%3C%2Fp%3E'
   42    43        ASSIGN                                                   !36, 'Terminvorschlag+1'
   43    44        ASSIGN                                                   !37, 'Terminvorschlag+2'
   44    45        ASSIGN                                                   !38, 'Terminvorschlag+3'
   45    46        ASSIGN                                                   !39, 'Zur%C3%BCck+zur+Startseite'
   46    47        ASSIGN                                                   !40, '%3Cspan+class%3D%22alert+alert-danger%22+role%3D%22alert%22%3EFEHLER+404+-+Seite+konnte+nicht+gefunden+werden%3C%2Fspan%3E'
   47    48        ASSIGN                                                   !41, 'Moeglicherweise+sind+Sie+hier+weil%3A%0A%3Ccenter%3E%3Cli%3Edie+angefragte+Seite+nicht+mehr+existiert%3C%2Fli%3E%0A%3Cli%3Edie+angefragte+Seite+verschoben+wurde%3C%2Fli%3E%0A%3Cli%3ESie+404+-+Error+Seiten+m%C3%B6gen+%3A-%29%3C%2Fli%3E%3C%2Fcenter%3E'
   51    49        ASSIGN                                                   !42, 'de'
   52    50        FETCH_R                      global              ~116    '_SESSION'
         51        TYPE_CHECK                                  128  ~117    ~116
         52      > JMPZ_EX                                          ~117    ~117, ->56
         53    >   FETCH_R                      global              ~118    '_SESSION'
         54        ARRAY_KEY_EXISTS                                 ~119    'time', ~118
         55        BOOL                                             ~117    ~119
         56    > > JMPZ                                                     ~117, ->97
   54    57    >   ASSIGN                                                   !43, 3300
   56    58        INIT_FCALL                                               'time'
         59        DO_ICALL                                         $121    
         60        FETCH_R                      global              ~122    '_SESSION'
         61        FETCH_DIM_R                                      ~123    ~122, 'time'
         62        SUB                                              ~124    $121, ~123
         63        IS_SMALLER                                               !43, ~124
         64      > JMPZ                                                     ~125, ->97
   58    65    >   INIT_FCALL                                               'header'
         66        SEND_VAL                                                 'Location%3A+login.html'
         67        DO_ICALL                                                 
   59    68        FETCH_W                      global              $127    '_SESSION'
         69        ASSIGN                                                   $127, <array>
   63    70        INIT_FCALL                                               'ini_get'
         71        SEND_VAL                                                 'session.use_cookies'
         72        DO_ICALL                                         $129    
         73      > JMPZ                                                     $129, ->95
   64    74    >   INIT_FCALL                                               'session_get_cookie_params'
         75        DO_ICALL                                         $130    
         76        ASSIGN                                                   !44, $130
   65    77        INIT_FCALL                                               'setcookie'
         78        INIT_FCALL                                               'session_name'
         79        DO_ICALL                                         $132    
         80        SEND_VAR                                                 $132
         81        SEND_VAL                                                 ''
         82        INIT_FCALL                                               'time'
         83        DO_ICALL                                         $133    
         84        SUB                                              ~134    $133, 42000
         85        SEND_VAL                                                 ~134
         86        FETCH_DIM_R                                      ~135    !44, 'path'
         87        SEND_VAL                                                 ~135
         88        FETCH_DIM_R                                      ~136    !44, 'domain'
         89        SEND_VAL                                                 ~136
         90        FETCH_DIM_R                                      ~137    !44, 'secure'
         91        SEND_VAL                                                 ~137
         92        FETCH_DIM_R                                      ~138    !44, 'httponly'
         93        SEND_VAL                                                 ~138
         94        DO_ICALL                                                 
   68    95    >   INIT_FCALL                                               'session_destroy'
         96        DO_ICALL                                                 
   73    97    >   ECHO                                                     '%3C%21DOCTYPE+html+PUBLIC+%22-%2F%2FW3C%2F%2FDTD+XHTML+1.0+Strict%2F%2FEN%22%0A+%22http%3A%2F%2Fwww.w3.org%2FTR%2Fxhtml1%2FDTD%2Fxhtml1-strict.dtd%22%3E%0A%3Chtml+lang%3D%22de%22%3E%0A%3Chead%3E%0A%3Cmeta+http-equiv%3D%22Content-Type%22+content%3D%22text%2Fhtml%3B+charset%3Dutf-8%22%2F%3E%0A%3Cmeta+http-equiv%3D%22X-UA-Compatible%22+content%3D%22IE%3Dedge%22%2F%3E%0A%3Cmeta+name%3D%22viewport%22+content%3D%22width%3Ddevice-width%2C+initial-scale%3D1%22%2F%3E%0A%3C%21--sphider_noindex--%3E%0A'
   84    98        INCLUDE_OR_EVAL                                          'expand%2Fconfig.inc.php', INCLUDE
   85    99        INCLUDE_OR_EVAL                                          'expand%2Ffunctions.inc.php', INCLUDE
   86   100        INCLUDE_OR_EVAL                                          'expand%2Frun.inc.php', INCLUDE
   87   101        INCLUDE_OR_EVAL                                          'funktionen%2Ffunktionen.php', INCLUDE
   88   102        INIT_FCALL_BY_NAME                                       'mainout'
        103        SEND_VAL_EX                                              'stoerung_text'
        104        DO_FCALL                                      0  $145    
        105        ASSIGN                                                   !45, $145
   90   106        ASSIGN                                                   !46, <array>
   91   107        FETCH_IS                                         ~148    '_REQUEST'
        108        ISSET_ISEMPTY_DIM_OBJ                         0          ~148, 'section'
        109      > JMPZ                                                     ~149, ->113
   92   110    >   FETCH_R                      global              ~150    '_REQUEST'
        111        FETCH_DIM_R                                      ~151    ~150, 'section'
        112        ASSIGN                                                   !47, ~151
   94   113    >   IS_EQUAL                                                 !47, 'welcome'
        114      > JMPZ                                                     ~153, ->118
   95   115    >   INIT_FCALL                                               'header'
        116        SEND_VAL                                                 'Location%3A+http%3A%2F%2Fwww.heli-planet.de'
        117        DO_ICALL                                                 
   97   118    >   ASSIGN                                                   !48, ''
   98   119        ASSIGN                                                   !49, ''
   99   120        ASSIGN                                                   !49, <array>
  102   121        INIT_FCALL_BY_NAME                                       'logon'
        122        DO_FCALL                                      0  $158    
        123      > JMPZ                                                     $158, ->129
  103   124    >   INIT_FCALL_BY_NAME                                       'userout'
        125        SEND_VAL_EX                                              'rank'
        126        DO_FCALL                                      0  $159    
        127        ASSIGN                                                   !50, $159
        128      > JMP                                                      ->135
  105   129    >   INIT_FCALL_BY_NAME                                       'is_crawler'
        130        DO_FCALL                                      0  $161    
        131      > JMPZ                                                     $161, ->134
  106   132    >   ASSIGN                                                   !50, '3'
        133      > JMP                                                      ->135
  108   134    >   ASSIGN                                                   !50, '0'
  113   135    >   INIT_FCALL_BY_NAME                                       'logon'
        136        DO_FCALL                                      0  $164    
        137        BOOL_NOT                                         ~165    $164
        138      > JMPZ                                                     ~165, ->155
  114   139    >   INIT_FCALL_BY_NAME                                       'mainout'
        140        SEND_VAL_EX                                              'regist'
        141        DO_FCALL                                      0  $166    
        142        IS_EQUAL                                                 $166, 1
        143      > JMPZ                                                     ~167, ->146
  115   144    >   ASSIGN_DIM                                               !49
        145        OP_DATA                                                  'regist'
  117   146    >   INIT_FCALL_BY_NAME                                       'mainout'
        147        SEND_VAL_EX                                              'pwv'
        148        DO_FCALL                                      0  $169    
        149        IS_EQUAL                                                 $169, 1
        150      > JMPZ                                                     ~170, ->153
  118   151    >   ASSIGN_DIM                                               !49
        152        OP_DATA                                                  'pwv'
  120   153    >   ASSIGN_DIM                                               !49
        154        OP_DATA                                                  'login'
  123   155    >   ROPE_INIT                                     3  ~174    'SELECT+dateien+FROM+1_hp+WHERE+perm_level+%3C%3D+%27'
        156        ROPE_ADD                                      1  ~174    ~174, !50
        157        ROPE_END                                      2  ~173    ~174, '%27'
        158        ASSIGN                                                   !51, ~173
  124   159        INIT_FCALL_BY_NAME                                       'mysqli_query'
        160        SEND_VAR_EX                                              !53
        161        SEND_VAR_EX                                              !51
        162        DO_FCALL                                      0  $177    
        163        ASSIGN                                                   !52, $177
  125   164      > JMP                                                      ->168
  126   165    >   FETCH_DIM_R                                      ~180    !54, 'dateien'
        166        ASSIGN_DIM                                               !49
        167        OP_DATA                                                  ~180
  125   168    >   INIT_FCALL_BY_NAME                                       'mysqli_fetch_array'
        169        SEND_VAR_EX                                              !52
        170        DO_FCALL                                      0  $181    
        171        ASSIGN                                           ~182    !54, $181
        172      > JMPNZ                                                    ~182, ->165
  132   173    >   FETCH_IS                                         ~183    '_GET'
        174        ISSET_ISEMPTY_DIM_OBJ                         0          ~183, 'section'
        175      > JMPZ                                                     ~184, ->180
  133   176    >   FETCH_R                      global              ~185    '_GET'
        177        FETCH_DIM_R                                      ~186    ~185, 'section'
        178        ASSIGN                                                   !47, ~186
        179      > JMP                                                      ->181
  135   180    >   ASSIGN                                                   !47, 'welcome'
  137   181    >   CONCAT                                           ~189    'cache-', !47
        182        CONCAT                                           ~190    ~189, '.htm'
        183        ASSIGN                                                   !55, ~190
  141   184        INIT_FCALL_BY_NAME                                       'logon'
        185        DO_FCALL                                      0  $192    
        186      > JMPZ                                                     $192, ->200
  142   187    >   IS_EQUAL                                         ~193    !56, 'mbzahlung'
        188      > JMPNZ_EX                                         ~193    ~193, ->191
        189    >   IS_EQUAL                                         ~194    !56, 'mbzahlung_vorab'
        190        BOOL                                             ~193    ~194
        191    > > JMPZ                                                     ~193, ->194
  143   192    >   ASSIGN                                                   !47, 'profil'
  144   193        ASSIGN                                                   !48, 'profil'
  146   194    >   IS_EQUAL                                                 !56, 'freetime'
        195      > JMPZ                                                     ~197, ->197
  147   196    >   ASSIGN                                                   !47, 'schon_eingeloggt'
  149   197    >   IS_EQUAL                                                 !47, 'login'
        198      > JMPZ                                                     ~199, ->200
  150   199    >   ASSIGN                                                   !47, 'schon_eingeloggt'
  155   200    >   ROPE_INIT                                     3  ~202    'SELECT+%2A+FROM+1_hp+WHERE+dateien+%3D+%27'
        201        ROPE_ADD                                      1  ~202    ~202, !47
        202        ROPE_END                                      2  ~201    ~202, '%27'
        203        ASSIGN                                                   !51, ~201
  156   204        INIT_FCALL_BY_NAME                                       'mysqli_query'
        205        SEND_VAR_EX                                              !53
        206        SEND_VAR_EX                                              !51
        207        DO_FCALL                                      0  $205    
        208        ASSIGN                                                   !52, $205
  157   209        INIT_FCALL_BY_NAME                                       'mysqli_fetch_assoc'
        210        SEND_VAR_EX                                              !52
        211        DO_FCALL                                      0  $207    
        212        ASSIGN                                                   !57, $207
  158   213        FETCH_DIM_R                                      ~209    !57, 'description'
        214        ASSIGN                                                   !58, ~209
  159   215        FETCH_DIM_R                                      ~211    !57, 'keywords'
        216        ASSIGN                                                   !59, ~211
  160   217        FETCH_DIM_R                                      ~213    !57, 'path'
        218        ASSIGN                                                   !60, ~213
  161   219        FETCH_DIM_R                                      ~215    !57, 'dateien'
        220        ASSIGN                                                   !61, ~215
  162   221        FETCH_DIM_R                                      ~217    !57, 'titel'
        222        ASSIGN                                                   !62, ~217
  163   223        FETCH_DIM_R                                      ~219    !57, 'description'
        224        ASSIGN                                                   !63, ~219
  164   225        FETCH_DIM_R                                      ~221    !57, 'keywords'
        226        ASSIGN                                                   !64, ~221
  166   227        ECHO                                                     '%3C%21--%2Fsphider_noindex--%3E%0A%3C%21--+The+above+3+meta+tags+%2Amust%2A+come+first+in+the+head%3B+any+other+head+content+must+come+%2Aafter%2A+these+tags+--%3E%0A%3Cmeta+name%3D%22Author%22+content%3D%22Webdesign+Peter+Henning.+Alle+Rechte+vorbehalten%22%2F%3E%0A%3Cmeta+name%3D%22description%22+content%3D%22'
  169   228        IS_NOT_EQUAL                                             !58, ''
        229      > JMPZ                                                     ~223, ->232
        230    >   ECHO                                                     !58
        231      > JMP                                                      ->233
        232    >   ECHO                                                     'Modellhelikopter%2C+Hubschrauber%2C+heli%2C+Modellflugschule%2C+Flugschule%2C+RC+Helikopter'
        233    >   ECHO                                                     '%22%2F%3E%0A%3Cmeta+name%3D%22keywords%22+content%3D%22'
  170   234        IS_NOT_EQUAL                                             !59, ''
        235      > JMPZ                                                     ~224, ->238
        236    >   ECHO                                                     !59
        237      > JMP                                                      ->239
        238    >   ECHO                                                     'Heli%2C+Helikopter%2C+Copter%2C+Hubschrauber%2C+Flugschule%2C+ferngesteuert%2C+fliegen+lernen%2C+RC+Heli+kaufen%2C'
        239    >   ECHO                                                     '%22%2F%3E%0A%3C%21--sphider_noindex--%3E%0A%3Cmeta+name%3D%22Publisher%22+content%3D%22Peter+Henning%22%2F%3E%0A%3Cmeta+name%3D%22Copyright%22+content%3D%22Peter+Henning%22%2F%3E%0A%3Cmeta+name%3D%22Page-topic%22+content%3D%22RC%2C+Modellbau%2C+Hubschrauber%2C+Helikopter%2C+Helikopter+fliegen%2C+Helicopter%2C+Flugschule%2C+Service%22%2F%3E%0A%3Cmeta+name%3D%22Audience%22+content%3D%22Alle%22%2F%3E%0A%3Cmeta+name%3D%22Content-language%22+content%3D%22DE%22%2F%3E%0A%3Cmeta+name%3D%22robots%22+content%3D%22index%2Cfollow%22%2F%3E%0A%3Cmeta+name%3D%22revisit-after%22+content%3D%225+days%22%2F%3E%0A%3Cmeta+name%3D%22expires%22+content%3D%225+days%22%2F%3E%0A%3Clink+rel%3D%22icon%22+href%3D%22%2Ffavicon.ico%22%2F%3E%0A%3C%21--+Desktop+Icons+f%C3%BCr+Apple+definieren+--%3E%0A%3Clink+rel%3D%22apple-touch-icon%22+href%3D%22images%2Ficons%2Ftouch-icon-iphone.png%22%3E%0A%3Clink+rel%3D%22apple-touch-icon%22+sizes%3D%2276x76%22+href%3D%22images%2Ficons%2Ftouch-icon-ipad.png%22%3E%0A%3Clink+rel%3D%22apple-touch-icon%22+sizes%3D%22120x120%22+href%3D%22images%2Ficons%2Ftouch-icon-iphone-retina.png%22%3E%0A%3Clink+rel%3D%22apple-touch-icon%22+sizes%3D%22152x152%22+href%3D%22images%2Ficons%2Ftouch-icon-ipad-retina.png%22%3E%0A%3C%21--%2Fsphider_noindex--%3E%0A%3Ctitle%3E'
  187   240        CONCAT                                           ~225    !62, '+'
        241        INIT_FCALL_BY_NAME                                       'userout'
        242        SEND_VAL_EX                                              'use

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
155.01 ms | 1428 KiB | 31 Q