3v4l.org

run code in 300+ PHP versions simultaneously
<?php extract($config); ?> <!DOCTYPE html> <!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]--> <!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]--> <!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]--> <!--[if (gte IE 9)|!(IE)]><!--><html class="no-js" lang="en"> <!--<![endif]--> <head> <!-- Basic Page Needs ================================================== --> <meta charset="utf-8"> <title>Home - UK Sports Blog - The Quiet Man Lets Out A Roar</title> <meta name="description" content="The Quiet Man Lets Out a Roar Homepage - UK Sports blog covering Football, Cricket and Tennis (among others)"> <meta name="author" content="Martin Heavens"> <!-- Mobile Specific Metas ================================================== --> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- CSS ================================================== --> <link rel="stylesheet" href="stylesheets/base.css"> <link rel="stylesheet" href="stylesheets/skeleton.css"> <link rel="stylesheet" href="stylesheets/layout.css"> <link rel="stylesheet" href="../stylesheets/base.css"> <link rel="stylesheet" href="../stylesheets/skeleton.css"> <link rel="stylesheet" href="../stylesheets/layout.css"> <!--[if lt IE 9]> <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <!-- Favicons ================================================== --> <link rel="shortcut icon" href="Images/favicon.ico"> <link rel="apple-touch-icon" href="Images/apple-touch-icon.png"> <link rel="apple-touch-icon" sizes="72x72" href="Images/apple-touch-icon-72x72.png"> <link rel="apple-touch-icon" sizes="114x114" href="Images/apple-touch-icon-114x114.png"> <!-- Get latest Javascript & Modernizr ================================================== --> <script src="http://code.jquery.com/jquery-1.7.1.min.js"></script> <script src="javascript/modernizr-2.7.1.min.js"></script> <!-- Google Analytics ================================================== --> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-39012813-1', 'thequietmanletsoutaroar.com'); ga('send', 'pageview'); </script> <!-- PHP-based styling for drop-down menu ================================================== --> <style> nav.primary ul li:hover ul { height:<?= ($config['links']+1)*35 ?>px;} </style> <!-- Base href for site ================================================== --> <base href="<?=$base?>"> </head> <body> <a name="top"></a> <div class="band"> <header class="container main headband"> <div class="sixteen columns"> <h1 class="logo1"><a href="index.php">The Quiet Man<br/>Lets Out A Roar</a></h1> <h3>What the commentators leave out.</h3> </div><!--end sixteen columns--> </header><!--end header--> <nav class="container primary"> <div class="sixteen columns"> <ul> <li><a href="index.php">Home</a></li> <li><a href="article.php?id=<?= $allposts[0]['id']; ?>">The Back Page</a> <ul> <?php $i = 0; foreach ($allposts as $post) { if( $i < $config['links'] && $post['published'] ) : extract($post); ?> <li><a href="article.php?id=<?= $id; ?>"><span>- </span><?= $title; ?></a></li> <?php $i++; endif; } ?> <li><a href="archive.php">More...</a></li> </ul> </li> <li><a href="about.php">About</a></li> </ul> <?php if( is_logged_in() ) : ?> <ul class="nav-admin"> <li><a href="admin/create.php">Create Post</a></li> <li><a href="admin/dashboard.php">Dashboard</a></li> <li><a href="admin/settings.php">Settings</a></li> <li><a href="admin/logout.php">Logout</a></li> </ul> <?php endif; ?> </div><!--end sixteen columns--> </nav><!--end nav--> <div class="container canvas"> <!-- CONTENT GOES HERE --> <?php include($path); ?> <!-- END OF CONTENT --> </div><!-- container --> <div class="band bottom"> <footer class="container"> <div class="sixteen columns middle-credit"> <a href="#top">Back to Top</a> </div><!--end middle credit--> <div class="eight columns first-credit"> <p><span class="dot">&#8226; </span> The Quiet Man Lets Out a Roar <span class="dot">&#8226; </span> &copy; Martin Heavens 2014 <span class="dot">&#8226;</span> All rights reserved <span class="dot">&#8226;</span> </p> </div><!--end first credit--> <div class="eight columns last-credit"> <p><span class="dot">&#8226; </span>Powered by Skeleton <span class="dot">&#8226; </span>Designed & developed by Martin Heavens <span class="dot">&#8226; </span><a href="admin/">Admin </a><span class="dot">&#8226;</span></p> </div><!--end last credit--> <div class="sixteen columns overall-credit"> <p><span class="dot">&#8226; </span> The Quiet Man Lets Out a Roar <span class="dot">&#8226; </span> &copy; Martin Heavens 2014 <span class="dot">&#8226;</span> All rights reserved <span class="dot">&#8226; </span>Powered by Skeleton <span class="dot">&#8226; </span>Designed & developed by Martin Heavens <span class="dot">&#8226;</span><a href="admin/">Admin </a><span class="dot">&#8226;</span></p> </div><!--end last credit--> </footer><!--end footer--> </div><!--end band bottom --> <!-- JS ================================================== --> <!--Slider--> <script src="javascript/jquery.flexslider.js"></script> <!--Instantiate Javascript plugins --> <script src="javascript/plugins.js"></script> <!--Tabs--> <script src="javascript/tabs.js"></script> <!--jQuery validate--> <script src="http://ajax.aspnetcdn.com/ajax/jquery.validate/1.11.1/jquery.validate.min.js"></script> <!--Other javascript--> <script> // Create "Latest post" label on first article on index (function(){ var post = <?= $allposts[0]['id']; ?>; $('#tab1 article:first-child').find('p.trail a:last-child').html("Latest Post").attr("href", "article.php?id=" + post); })(); // Submit pop-up $(document).ready(function(){ // hide popup when user clicks on close button $('#closebtn').click(function(){ $('#popupbg').hide(); // hide the overlay }); $('#linkbtn').click(function(){ $(location).attr('href','admin/dashboard.php'); $('#popupbg').hide(); // hide the overlay }); // hides the popup if user clicks anywhere outside the container $('#popupbg').click(function(){ $('#popupbg').hide(); }) // prevents the overlay from closing if user clicks inside the popup overlay $('#popupcontent').click(function(){ return false; }); }); </script> <!-- End Document ================================================== --> </body> </html>
Finding entry points
Branch analysis from position: 0
2 jumps found. (Code = 77) Position 1 = 17, Position 2 = 34
Branch analysis from position: 17
2 jumps found. (Code = 78) Position 1 = 18, Position 2 = 34
Branch analysis from position: 18
2 jumps found. (Code = 46) Position 1 = 21, Position 2 = 23
Branch analysis from position: 21
2 jumps found. (Code = 43) Position 1 = 24, Position 2 = 33
Branch analysis from position: 24
1 jumps found. (Code = 42) Position 1 = 17
Branch analysis from position: 17
Branch analysis from position: 33
Branch analysis from position: 23
Branch analysis from position: 34
2 jumps found. (Code = 43) Position 1 = 39, Position 2 = 40
Branch analysis from position: 39
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 40
Branch analysis from position: 34
filename:       /in/L5Th8
function name:  (null)
number of ops:  48
compiled vars:  !0 = $config, !1 = $base, !2 = $allposts, !3 = $i, !4 = $post, !5 = $id, !6 = $title, !7 = $path
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    1     0  E >   INIT_FCALL                                               'extract'
          1        SEND_REF                                                 !0
          2        DO_ICALL                                                 
    2     3        ECHO                                                     '%0A%3C%21DOCTYPE+html%3E%0A%3C%21--%5Bif+lt+IE+7+%5D%3E%3Chtml+class%3D%22ie+ie6%22+lang%3D%22en%22%3E+%3C%21%5Bendif%5D--%3E%0A%3C%21--%5Bif+IE+7+%5D%3E%3Chtml+class%3D%22ie+ie7%22+lang%3D%22en%22%3E+%3C%21%5Bendif%5D--%3E%0A%3C%21--%5Bif+IE+8+%5D%3E%3Chtml+class%3D%22ie+ie8%22+lang%3D%22en%22%3E+%3C%21%5Bendif%5D--%3E%0A%3C%21--%5Bif+%28gte+IE+9%29%7C%21%28IE%29%5D%3E%3C%21--%3E%3Chtml+class%3D%22no-js%22+lang%3D%22en%22%3E+%3C%21--%3C%21%5Bendif%5D--%3E%0A%3Chead%3E%0A%0A%09%3C%21--+Basic+Page+Needs%0A++%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D+--%3E%0A%09%3Cmeta+charset%3D%22utf-8%22%3E%0A%09%3Ctitle%3EHome+-+UK+Sports+Blog+-+The+Quiet+Man+Lets+Out+A+Roar%3C%2Ftitle%3E%0A%09%3Cmeta+name%3D%22description%22+content%3D%22The+Quiet+Man+Lets+Out+a+Roar+Homepage+-+UK+Sports+blog+covering+Football%2C+Cricket+and+Tennis+%28among+others%29%22%3E%0A%09%3Cmeta+name%3D%22author%22+content%3D%22Martin+Heavens%22%3E%0A%0A%09%3C%21--+Mobile+Specific+Metas%0A++%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D+--%3E%0A%09%3Cmeta+name%3D%22viewport%22+content%3D%22width%3Ddevice-width%2C+initial-scale%3D1%22%3E%0A%0A%09%3C%21--+CSS%0A++%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D+--%3E%0A%09%3Clink+rel%3D%22stylesheet%22+href%3D%22stylesheets%2Fbase.css%22%3E%0A%09%3Clink+rel%3D%22stylesheet%22+href%3D%22stylesheets%2Fskeleton.css%22%3E%0A%09%3Clink+rel%3D%22stylesheet%22+href%3D%22stylesheets%2Flayout.css%22%3E%0A%0A%09%3Clink+rel%3D%22stylesheet%22+href%3D%22..%2Fstylesheets%2Fbase.css%22%3E%0A%09%3Clink+rel%3D%22stylesheet%22+href%3D%22..%2Fstylesheets%2Fskeleton.css%22%3E%0A%09%3Clink+rel%3D%22stylesheet%22+href%3D%22..%2Fstylesheets%2Flayout.css%22%3E%0A%0A%09%3C%21--%5Bif+lt+IE+9%5D%3E%0A%09%09%3Cscript+src%3D%22http%3A%2F%2Fhtml5shim.googlecode.com%2Fsvn%2Ftrunk%2Fhtml5.js%22%3E%3C%2Fscript%3E%0A%09%3C%21%5Bendif%5D--%3E%0A%0A%09%3C%21--+Favicons%0A%09%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D+--%3E%0A%09%3Clink+rel%3D%22shortcut+icon%22+href%3D%22Images%2Ffavicon.ico%22%3E%0A%09%3Clink+rel%3D%22apple-touch-icon%22+href%3D%22Images%2Fapple-touch-icon.png%22%3E%0A%09%3Clink+rel%3D%22apple-touch-icon%22+sizes%3D%2272x72%22+href%3D%22Images%2Fapple-touch-icon-72x72.png%22%3E%0A%09%3Clink+rel%3D%22apple-touch-icon%22+sizes%3D%22114x114%22+href%3D%22Images%2Fapple-touch-icon-114x114.png%22%3E%0A%0A+%09%3C%21--+Get+latest+Javascript+%26+Modernizr%0A%09%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D+--%3E+%0A++++%3Cscript+src%3D%22http%3A%2F%2Fcode.jquery.com%2Fjquery-1.7.1.min.js%22%3E%3C%2Fscript%3E%0A++++%3Cscript+src%3D%22javascript%2Fmodernizr-2.7.1.min.js%22%3E%3C%2Fscript%3E%0A++%0A+%09%3C%21--+Google+Analytics%0A%09%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D+--%3E+%0A++++%3Cscript%3E%0A++++++%28function%28i%2Cs%2Co%2Cg%2Cr%2Ca%2Cm%29%7Bi%5B%27GoogleAnalyticsObject%27%5D%3Dr%3Bi%5Br%5D%3Di%5Br%5D%7C%7Cfunction%28%29%7B%0A++++++%28i%5Br%5D.q%3Di%5Br%5D.q%7C%7C%5B%5D%29.push%28arguments%29%7D%2Ci%5Br%5D.l%3D1%2Anew+Date%28%29%3Ba%3Ds.createElement%28o%29%2C%0A++++++m%3Ds.getElementsByTagName%28o%29%5B0%5D%3Ba.async%3D1%3Ba.src%3Dg%3Bm.parentNode.insertBefore%28a%2Cm%29%0A++++++%7D%29%28window%2Cdocument%2C%27script%27%2C%27%2F%2Fwww.google-analytics.com%2Fanalytics.js%27%2C%27ga%27%29%3B%0A%0A++++++ga%28%27create%27%2C+%27UA-39012813-1%27%2C+%27thequietmanletsoutaroar.com%27%29%3B%0A++++++ga%28%27send%27%2C+%27pageview%27%29%3B%0A++++%3C%2Fscript%3E%0A%0A+%09%3C%21--+PHP-based+styling+for+drop-down+menu%0A%09%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D+--%3E%0A%09%3Cstyle%3E%0A%09%09nav.primary+ul+li%3Ahover+ul+%7B+height%3A'
   62     4        FETCH_DIM_R                                      ~9      !0, 'links'
          5        ADD                                              ~10     ~9, 1
          6        MUL                                              ~11     ~10, 35
          7        ECHO                                                     ~11
          8        ECHO                                                     'px%3B%7D%0A%09%3C%2Fstyle%3E%0A%0A+%09%3C%21--+Base+href+for+site%0A%09%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D+--%3E%09%0A%09%3Cbase+href%3D%22'
   67     9        ECHO                                                     !1
         10        ECHO                                                     '%22%3E%0A%0A%3C%2Fhead%3E%0A%3Cbody%3E%0A++++%3Ca+name%3D%22top%22%3E%3C%2Fa%3E%09%09%09+%0A++++%3Cdiv+class%3D%22band%22%3E%0A++++++++%3Cheader+class%3D%22container+main+headband%22%3E%0A%09%09%09%3Cdiv+class%3D%22sixteen+columns%22%3E%0A++++++++++++++++%3Ch1+class%3D%22logo1%22%3E%3Ca+href%3D%22index.php%22%3EThe+Quiet+Man%3Cbr%2F%3ELets+Out+A+Roar%3C%2Fa%3E%3C%2Fh1%3E%0A++++++++++++++++%3Ch3%3EWhat+the+commentators+leave+out.%3C%2Fh3%3E%0A%09%09%09%3C%2Fdiv%3E%3C%21--end+sixteen+columns--%3E%0A++++++++%3C%2Fheader%3E%3C%21--end+header--%3E%0A%09%0A++++++++%3Cnav+class%3D%22container+primary%22%3E%0A++++++++++++%3Cdiv+class%3D%22sixteen+columns%22%3E%0A++++++++++++++++%3Cul%3E%0A++++++++++++++++++++%3Cli%3E%3Ca+href%3D%22index.php%22%3EHome%3C%2Fa%3E%3C%2Fli%3E%0A++++++++++++++++++++%3Cli%3E%3Ca+href%3D%22article.php%3Fid%3D'
   84    11        FETCH_DIM_R                                      ~12     !2, 0
         12        FETCH_DIM_R                                      ~13     ~12, 'id'
         13        ECHO                                                     ~13
         14        ECHO                                                     '%22%3EThe+Back+Page%3C%2Fa%3E%0A++++++++++++++++++++++++%3Cul%3E%0A%09%09%09%09%09%09%09'
   86    15        ASSIGN                                                   !3, 0
   87    16      > FE_RESET_R                                       $15     !2, ->34
         17    > > FE_FETCH_R                                               $15, !4, ->34
   88    18    >   FETCH_DIM_R                                      ~16     !0, 'links'
         19        IS_SMALLER                                       ~17     !3, ~16
         20      > JMPZ_EX                                          ~17     ~17, ->23
         21    >   FETCH_DIM_R                                      ~18     !4, 'published'
         22        BOOL                                             ~17     ~18
         23    > > JMPZ                                                     ~17, ->33
   89    24    >   INIT_FCALL                                               'extract'
         25        SEND_REF                                                 !4
         26        DO_ICALL                                                 
   90    27        ECHO                                                     '%09%09%09%09%09%09%09%09%09%09%3Cli%3E%3Ca+href%3D%22article.php%3Fid%3D'
         28        ECHO                                                     !5
         29        ECHO                                                     '%22%3E%3Cspan%3E-+%3C%2Fspan%3E'
         30        ECHO                                                     !6
         31        ECHO                                                     '%3C%2Fa%3E%3C%2Fli%3E%0A%09%09%09%09%09%09%09%09%09%09'
   91    32        PRE_INC                                                  !3
   87    33    > > JMP                                                      ->17
         34    >   FE_FREE                                                  $15
   94    35        ECHO                                                     '%09%09%09%09%09%09%09%3Cli%3E%3Ca+href%3D%22archive.php%22%3EMore...%3C%2Fa%3E%3C%2Fli%3E%0A++++++++++++++++++++++++%3C%2Ful%3E%0A++++++++++++++++++++%3C%2Fli%3E%0A++++++++++++++++++++%3Cli%3E%3Ca+href%3D%22about.php%22%3EAbout%3C%2Fa%3E%3C%2Fli%3E%0A++++++++++++++++%3C%2Ful%3E%0A++++++++++++++++++++'
   99    36        INIT_FCALL_BY_NAME                                       'is_logged_in'
         37        DO_FCALL                                      0  $21     
         38      > JMPZ                                                     $21, ->40
  100    39    >   ECHO                                                     '%09++++++++++++++++%3Cul+class%3D%22nav-admin%22%3E%0A%09++++++++++++++++++++%3Cli%3E%3Ca+href%3D%22admin%2Fcreate.php%22%3ECreate+Post%3C%2Fa%3E%3C%2Fli%3E%0A%09++++++++++++++++++++%3Cli%3E%3Ca+href%3D%22admin%2Fdashboard.php%22%3EDashboard%3C%2Fa%3E%3C%2Fli%3E%0A%09++++++++++++++++++++%3Cli%3E%3Ca+href%3D%22admin%2Fsettings.php%22%3ESettings%3C%2Fa%3E%3C%2Fli%3E%0A%09++++++++++++++++++++%3Cli%3E%3Ca+href%3D%22admin%2Flogout.php%22%3ELogout%3C%2Fa%3E%3C%2Fli%3E%0A++++++++++++++++++++%3C%2Ful%3E%0A%09++++++++++++++++'
  107    40    >   ECHO                                                     '++++++++++++%3C%2Fdiv%3E%3C%21--end+sixteen+columns--%3E%0A++++++++%3C%2Fnav%3E%3C%21--end+nav--%3E%0A%0A++++++++%3Cdiv+class%3D%22container+canvas%22%3E%0A%0A%09%09%09%3C%21--+CONTENT+GOES+HERE+--%3E%0A%0A%09%09%09'
  114    41        INCLUDE_OR_EVAL                                          !7, INCLUDE
  115    42        ECHO                                                     '%0A%09%09%09%3C%21--+END+OF+CONTENT+--%3E%0A%0A++++++++%3C%2Fdiv%3E%3C%21--+container+--%3E%0A%0A%09%09%3Cdiv+class%3D%22band+bottom%22%3E%0A%09++++++++%3Cfooter+class%3D%22container%22%3E%0A%09++++++++++++%3Cdiv+class%3D%22sixteen+columns+middle-credit%22%3E%0A%09++++++++++++++++%3Ca+href%3D%22%23top%22%3EBack+to+Top%3C%2Fa%3E%0A%09++++++++++++%3C%2Fdiv%3E%3C%21--end+middle+credit--%3E%0A%09%09%09%09%0A%09++++++++++++%3Cdiv+class%3D%22eight+columns+first-credit%22%3E%0A%09++++++++++++++++%3Cp%3E%3Cspan+class%3D%22dot%22%3E%26%238226%3B+%3C%2Fspan%3E%0A%09++++++++++++++++The+Quiet+Man+Lets+Out+a+Roar+%0A%09++++++++++++++++%3Cspan+class%3D%22dot%22%3E%26%238226%3B+%3C%2Fspan%3E%0A%09++++++++++++++++%26copy%3B+Martin+Heavens+2014+%0A%09++++++++++++++++%3Cspan+class%3D%22dot%22%3E%26%238226%3B%3C%2Fspan%3E%0A%09++++++++++++++++All+rights+reserved%0A%09++++++++++++++++%3Cspan+class%3D%22dot%22%3E%26%238226%3B%3C%2Fspan%3E%0A%09++++++++++++++++%3C%2Fp%3E%0A%09++++++++++++%3C%2Fdiv%3E%3C%21--end+first+credit--%3E%0A%0A%09++++++++++++%3Cdiv+class%3D%22eight+columns+last-credit%22%3E%0A++++++++++++++++++++%3Cp%3E%3Cspan+class%3D%22dot%22%3E%26%238226%3B+%3C%2Fspan%3EPowered+by+Skeleton+%3Cspan+class%3D%22dot%22%3E%26%238226%3B+%3C%2Fspan%3EDesigned+%26+developed+by+Martin+Heavens+%3Cspan+class%3D%22dot%22%3E%26%238226%3B+%3C%2Fspan%3E%3Ca+href%3D%22admin%2F%22%3EAdmin+%3C%2Fa%3E%3Cspan+class%3D%22dot%22%3E%26%238226%3B%3C%2Fspan%3E%3C%2Fp%3E%0A%09++++++++++++%3C%2Fdiv%3E%3C%21--end+last+credit--%3E%0A%09%09%09%09%0A%09++++++++++++%3Cdiv+class%3D%22sixteen+columns+overall-credit%22%3E%0A%09++++++++++++++++%3Cp%3E%3Cspan+class%3D%22dot%22%3E%26%238226%3B+%3C%2Fspan%3E%0A%09++++++++++++++++The+Quiet+Man+Lets+Out+a+Roar+%0A%09++++++++++++++++%3Cspan+class%3D%22dot%22%3E%26%238226%3B+%3C%2Fspan%3E%0A%09++++++++++++++++%26copy%3B+Martin+Heavens+2014+%0A%09++++++++++++++++%3Cspan+class%3D%22dot%22%3E%26%238226%3B%3C%2Fspan%3E%0A%09++++++++++++++++All+rights+reserved%0A%09++++++++++++++++%3Cspan+class%3D%22dot%22%3E%26%238226%3B+%3C%2Fspan%3EPowered+by+Skeleton+%3Cspan+class%3D%22dot%22%3E%26%238226%3B+%3C%2Fspan%3EDesigned+%26+developed+by+Martin+Heavens+%3Cspan+class%3D%22dot%22%3E%26%238226%3B%3C%2Fspan%3E%3Ca+href%3D%22admin%2F%22%3EAdmin+%3C%2Fa%3E%3Cspan+class%3D%22dot%22%3E%26%238226%3B%3C%2Fspan%3E%3C%2Fp%3E%0A%09++++++++++++%3C%2Fdiv%3E%3C%21--end+last+credit--%3E%09%0A%09++++++++%3C%2Ffooter%3E%3C%21--end+footer--%3E%0A%09%09%3C%2Fdiv%3E%3C%21--end+band+bottom+--%3E%0A%09%0A%3C%21--+JS%0A%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D+--%3E%0A%09%0A++++%3C%21--Slider--%3E%0A++++%3Cscript+src%3D%22javascript%2Fjquery.flexslider.js%22%3E%3C%2Fscript%3E%0A%09%0A++++%3C%21--Instantiate+Javascript+plugins+--%3E%0A++++%3Cscript+src%3D%22javascript%2Fplugins.js%22%3E%3C%2Fscript%3E%0A%0A%09%3C%21--Tabs--%3E%0A++++%3Cscript+src%3D%22javascript%2Ftabs.js%22%3E%3C%2Fscript%3E%0A%0A%09%3C%21--jQuery+validate--%3E%0A%09%3Cscript+src%3D%22http%3A%2F%2Fajax.aspnetcdn.com%2Fajax%2Fjquery.validate%2F1.11.1%2Fjquery.validate.min.js%22%3E%3C%2Fscript%3E%0A%0A%09%3C%21--Other+javascript--%3E%0A%09%3Cscript%3E%0A%09%09%2F%2F+Create+%22Latest+post%22+label+on+first+article+on+index%0A%09++++%28function%28%29%7B%0A%09++++++var+post+%3D+'
  172    43        FETCH_DIM_R                                      ~23     !2, 0
         44        FETCH_DIM_R                                      ~24     ~23, 'id'
         45        ECHO                                                     ~24
         46        ECHO                                                     '%3B%0A%09++++++%24%28%27%23tab1+article%3Afirst-child%27%29.find%28%27p.trail+a%3Alast-child%27%29.html%28%22Latest+Post%22%29.attr%28%22href%22%2C+%22article.php%3Fid%3D%22+%2B+post%29%3B%0A%09++++%7D%29%28%29%3B%0A%0A%0A%09++++%2F%2F+Submit+pop-up%0A%09++++%24%28document%29.ready%28function%28%29%7B%0A%0A%09++++++%2F%2F+hide+popup+when+user+clicks+on+close+button%0A%09++++++%24%28%27%23closebtn%27%29.click%28function%28%29%7B%0A%09++++++++%24%28%27%23popupbg%27%29.hide%28%29%3B+%2F%2F+hide+the+overlay%0A%09++++++%7D%29%3B%0A%0A%09++++++%24%28%27%23linkbtn%27%29.click%28function%28%29%7B%0A%09++++++++%24%28location%29.attr%28%27href%27%2C%27admin%2Fdashboard.php%27%29%3B%0A%09++++++++%24%28%27%23popupbg%27%29.hide%28%29%3B+%2F%2F+hide+the+overlay%0A%09++++++%7D%29%3B%0A%09+++++++%0A%09++++++%2F%2F+hides+the+popup+if+user+clicks+anywhere+outside+the+container%0A%09++++++%24%28%27%23popupbg%27%29.click%28function%28%29%7B%0A%09++++++++++%24%28%27%23popupbg%27%29.hide%28%29%3B%0A%09++++++%7D%29%0A%09++++++%2F%2F+prevents+the+overlay+from+closing+if+user+clicks+inside+the+popup+overlay%0A%09++++++%24%28%27%23popupcontent%27%29.click%28function%28%29%7B%0A%09++++++++++return+false%3B%0A%09++++++%7D%29%3B%0A%09++++%7D%29%3B%0A%09%3C%2Fscript%3E%0A%0A++++%0A%3C%21--+End+Document%0A%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D+--%3E%0A%09%3C%2Fbody%3E%0A%3C%2Fhtml%3E'
  205    47      > RETURN                                                   1

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
149.49 ms | 1412 KiB | 15 Q