3v4l.org

run code in 300+ PHP versions simultaneously
<?php include_once('controller/contents.php') ?> <!DOCTYPE html> <html> <head> <meta charset="utf-8"/> <title>PSNDL - Contents</title> <link rel="stylesheet" href="../assets/bootstrap/css/bootstrap.css" type="text/css"> </head> <body> <?php include_once('fragment/navbar.php') ?> <div class="container"> <div> <ul class="nav nav-tabs"> <li class="active"><a href="#tab_contents" data-toggle="tab">Database Contents</a></li> <li><a href="#tab_waiting_approval" data-toggle="tab">Waiting approval</a></li> <li><a href="#tab_download_database" data-toggle="tab">Download database</a></li> </ul> <div class="tab-content" id="tabs"> <!-- Database contents tab --> <div class="tab-pane fade active in" id="tab_contents"> <nav class="nav"> <h2 class="navbar-left">Packages</h2> <!-- Search form --> <form action="" class="navbar-form navbar-right" method="get"> <div class="form-group"> <input type="text" name="txt_search" class="form-control" placeholder="Search" value="<?php echo $keptSearch ?>"/> </div> <button type="submit" class="btn btn-default"><span class="glyphicon glyphicon-search"></span></button> </form> </nav> <?php if (count($packages) > 0) { ?> <table class="table table-hover table-bordered"> <thead> <tr> <th>ID</th> <th>Category</th> <th>Title</th> <th>Region</th> <th>Author</th> <th>Download count</th> <th>View package</th> <?php if ($hasEditPermission) echo '<th>Edit</th>' ?> </tr> </thead> <tbody> <?php foreach ($packages as $pkgEntry) { ?> <tr> <?php echo "<td>{$pkgEntry->getPackageID()}</td>" ?> <?php echo "<td>{$pkgEntry->getCategory()}</td>" ?> <?php echo "<td>{$pkgEntry->getTitle()}</td>" ?> <?php echo "<td>{$pkgEntry->getRegion()}</td>" ?> <?php echo "<td>{$pkgEntry->getAuthor()}</td>" ?> <?php echo "<td>{$pkgEntry->getDownloadCount()}</td>" ?> <?php echo "<td class='text-center'><a class='btn btn-primary' href='view_package.php?id={$pkgEntry->getID()}'>View package</a></td>" ?> <!-- Edit button --> <?php if ($hasEditPermission) echo "<td class='text-center'><a class='btn btn-success' href='edit_package.php?id={$pkgEntry->getID()}'>Edit</a></td>" ?> </tr> <?php } ?> </tbody> </table> <form action="contents.php"> <nav> <?php buildPackagesPager(); ?> </nav> </form> <?php } else { ?> <h5>No packages found.</h5> <?php } ?> </div> <!-- End database contents tab --> <!-- Waiting approval tab --> <div class="tab-pane" id="tab_waiting_approval"> <nav class="nav"> <h2 class="navbar-left">Pending packages</h2> </nav> <?php if (count($packagesWaiting) > 0) { ?> <table class="table table-hover table-bordered"> <thead> <tr> <th>ID</th> <th>Category</th> <th>Title</th> <th>Region</th> <th>Author</th> <th>Download count</th> <th>View package</th> <?php if ($hasEditPermission) echo '<th>Edit</th>' ?> </tr> </thead> <tbody> <?php foreach ($packagesWaiting as $pkgEntry) { ?> <tr> <?php echo "<td>{$pkgEntry->getPackageID()}</td>" ?> <?php echo "<td>{$pkgEntry->getCategory()}</td>" ?> <?php echo "<td>{$pkgEntry->getTitle()}</td>" ?> <?php echo "<td>{$pkgEntry->getRegion()}</td>" ?> <?php echo "<td>{$pkgEntry->getAuthor()}</td>" ?> <?php echo "<td>{$pkgEntry->getDownloadCount()}</td>" ?> <?php echo "<td class='text-center'><a class='btn btn-primary' href='view_package.php?id={$pkgEntry->getID()}'>View package</a></td>" ?> <!-- Edit button --> <?php if ($hasEditPermission) echo "<td class='text-center'><a class='btn btn-success' href='edit_package.php?id={$pkgEntry->getID()}'>Edit</a></td>" ?> </tr> <?php } ?> </tbody> </table> <?php } else { ?> <h5>No pending packages</h5> <?php } ?> </div> <!-- End waiting approval tab --> <!-- Download database tab --> <div class="tab-pane" id="tab_download_database"> <div class="jumbotron"> <h2>Downloading the database</h2> <p style="font-size: 16px"> Downloading the database is only useful for users who still want to use old PSNDLv1, PSNStuffX or any compatible software. <br/> Please note that I highly recommend you to get used to this website instead. </p> <a class="btn btn-primary btn-lg" href="/controller/download_database.php">Download</a> </div> </div> <!-- End download database tab --> </div> </div> </div> </body> </html>
Finding entry points
Branch analysis from position: 0
2 jumps found. (Code = 43) Position 1 = 9, Position 2 = 80
Branch analysis from position: 9
2 jumps found. (Code = 43) Position 1 = 11, Position 2 = 12
Branch analysis from position: 11
2 jumps found. (Code = 77) Position 1 = 14, Position 2 = 74
Branch analysis from position: 14
2 jumps found. (Code = 78) Position 1 = 15, Position 2 = 74
Branch analysis from position: 15
2 jumps found. (Code = 43) Position 1 = 66, Position 2 = 72
Branch analysis from position: 66
1 jumps found. (Code = 42) Position 1 = 14
Branch analysis from position: 14
Branch analysis from position: 72
Branch analysis from position: 74
1 jumps found. (Code = 42) Position 1 = 81
Branch analysis from position: 81
2 jumps found. (Code = 43) Position 1 = 85, Position 2 = 153
Branch analysis from position: 85
2 jumps found. (Code = 43) Position 1 = 87, Position 2 = 88
Branch analysis from position: 87
2 jumps found. (Code = 77) Position 1 = 90, Position 2 = 150
Branch analysis from position: 90
2 jumps found. (Code = 78) Position 1 = 91, Position 2 = 150
Branch analysis from position: 91
2 jumps found. (Code = 43) Position 1 = 142, Position 2 = 148
Branch analysis from position: 142
1 jumps found. (Code = 42) Position 1 = 90
Branch analysis from position: 90
Branch analysis from position: 148
Branch analysis from position: 150
1 jumps found. (Code = 42) Position 1 = 154
Branch analysis from position: 154
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 150
Branch analysis from position: 88
Branch analysis from position: 153
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 74
Branch analysis from position: 12
Branch analysis from position: 80
2 jumps found. (Code = 43) Position 1 = 85, Position 2 = 153
Branch analysis from position: 85
Branch analysis from position: 153
filename:       /in/VFbOu
function name:  (null)
number of ops:  156
compiled vars:  !0 = $keptSearch, !1 = $packages, !2 = $hasEditPermission, !3 = $pkgEntry, !4 = $packagesWaiting
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    1     0  E >   INCLUDE_OR_EVAL                                          'controller%2Fcontents.php', INCLUDE_ONCE
    2     1        ECHO                                                     '%3C%21DOCTYPE+html%3E%0A%3Chtml%3E%0A%3Chead%3E%0A++++%3Cmeta+charset%3D%22utf-8%22%2F%3E%0A++++%3Ctitle%3EPSNDL+-+Contents%3C%2Ftitle%3E%0A++++%3Clink+rel%3D%22stylesheet%22+href%3D%22..%2Fassets%2Fbootstrap%2Fcss%2Fbootstrap.css%22+type%3D%22text%2Fcss%22%3E%0A%3C%2Fhead%3E%0A%3Cbody%3E%0A%0A'
   11     2        INCLUDE_OR_EVAL                                          'fragment%2Fnavbar.php', INCLUDE_ONCE
   12     3        ECHO                                                     '%0A%3Cdiv+class%3D%22container%22%3E%0A++++%3Cdiv%3E%0A++++++++%3Cul+class%3D%22nav+nav-tabs%22%3E%0A++++++++++++%3Cli+class%3D%22active%22%3E%3Ca+href%3D%22%23tab_contents%22+data-toggle%3D%22tab%22%3EDatabase+Contents%3C%2Fa%3E%3C%2Fli%3E%0A++++++++++++%3Cli%3E%3Ca+href%3D%22%23tab_waiting_approval%22+data-toggle%3D%22tab%22%3EWaiting+approval%3C%2Fa%3E%3C%2Fli%3E%0A++++++++++++%3Cli%3E%3Ca+href%3D%22%23tab_download_database%22+data-toggle%3D%22tab%22%3EDownload+database%3C%2Fa%3E%3C%2Fli%3E%0A++++++++%3C%2Ful%3E%0A++++++++%3Cdiv+class%3D%22tab-content%22+id%3D%22tabs%22%3E%0A++++++++++++%3C%21--+Database+contents+tab+--%3E%0A++++++++++++%3Cdiv+class%3D%22tab-pane+fade+active+in%22+id%3D%22tab_contents%22%3E%0A++++++++++++++++%3Cnav+class%3D%22nav%22%3E%0A++++++++++++++++++++%3Ch2+class%3D%22navbar-left%22%3EPackages%3C%2Fh2%3E%0A++++++++++++++++++++%3C%21--+Search+form+--%3E%0A++++++++++++++++++++%3Cform+action%3D%22%22+class%3D%22navbar-form+navbar-right%22+method%3D%22get%22%3E%0A++++++++++++++++++++++++%3Cdiv+class%3D%22form-group%22%3E%0A++++++++++++++++++++++++++++%3Cinput+type%3D%22text%22+name%3D%22txt_search%22+class%3D%22form-control%22+placeholder%3D%22Search%22+value%3D%22'
   28     4        ECHO                                                     !0
          5        ECHO                                                     '%22%2F%3E%0A++++++++++++++++++++++++%3C%2Fdiv%3E%0A++++++++++++++++++++++++%3Cbutton+type%3D%22submit%22+class%3D%22btn+btn-default%22%3E%3Cspan+class%3D%22glyphicon+glyphicon-search%22%3E%3C%2Fspan%3E%3C%2Fbutton%3E%0A++++++++++++++++++++%3C%2Fform%3E%0A++++++++++++++++%3C%2Fnav%3E%0A++++++++++++++++'
   33     6        COUNT                                            ~7      !1
          7        IS_SMALLER                                               0, ~7
          8      > JMPZ                                                     ~8, ->80
   34     9    >   ECHO                                                     '++++++++++++++++++++%3Ctable+class%3D%22table+table-hover+table-bordered%22%3E%0A++++++++++++++++++++++++%3Cthead%3E%0A++++++++++++++++++++++++%3Ctr%3E%0A++++++++++++++++++++++++++++%3Cth%3EID%3C%2Fth%3E%0A++++++++++++++++++++++++++++%3Cth%3ECategory%3C%2Fth%3E%0A++++++++++++++++++++++++++++%3Cth%3ETitle%3C%2Fth%3E%0A++++++++++++++++++++++++++++%3Cth%3ERegion%3C%2Fth%3E%0A++++++++++++++++++++++++++++%3Cth%3EAuthor%3C%2Fth%3E%0A++++++++++++++++++++++++++++%3Cth%3EDownload+count%3C%2Fth%3E%0A++++++++++++++++++++++++++++%3Cth%3EView+package%3C%2Fth%3E%0A++++++++++++++++++++++++++++'
   44    10      > JMPZ                                                     !2, ->12
         11    >   ECHO                                                     '%3Cth%3EEdit%3C%2Fth%3E'
   45    12    >   ECHO                                                     '++++++++++++++++++++++++%3C%2Ftr%3E%0A++++++++++++++++++++++++%3C%2Fthead%3E%0A++++++++++++++++++++++++%3Ctbody%3E%0A++++++++++++++++++++++++'
   48    13      > FE_RESET_R                                       $9      !1, ->74
         14    > > FE_FETCH_R                                               $9, !3, ->74
   49    15    >   ECHO                                                     '++++++++++++++++++++++++++++%3Ctr%3E%0A++++++++++++++++++++++++++++++++'
   50    16        ROPE_INIT                                     3  ~12     '%3Ctd%3E'
         17        INIT_METHOD_CALL                                         !3, 'getPackageID'
         18        DO_FCALL                                      0  $10     
         19        ROPE_ADD                                      1  ~12     ~12, $10
         20        ROPE_END                                      2  ~11     ~12, '%3C%2Ftd%3E'
         21        ECHO                                                     ~11
   51    22        ECHO                                                     '++++++++++++++++++++++++++++++++'
         23        ROPE_INIT                                     3  ~16     '%3Ctd%3E'
         24        INIT_METHOD_CALL                                         !3, 'getCategory'
         25        DO_FCALL                                      0  $14     
         26        ROPE_ADD                                      1  ~16     ~16, $14
         27        ROPE_END                                      2  ~15     ~16, '%3C%2Ftd%3E'
         28        ECHO                                                     ~15
   52    29        ECHO                                                     '++++++++++++++++++++++++++++++++'
         30        ROPE_INIT                                     3  ~20     '%3Ctd%3E'
         31        INIT_METHOD_CALL                                         !3, 'getTitle'
         32        DO_FCALL                                      0  $18     
         33        ROPE_ADD                                      1  ~20     ~20, $18
         34        ROPE_END                                      2  ~19     ~20, '%3C%2Ftd%3E'
         35        ECHO                                                     ~19
   53    36        ECHO                                                     '++++++++++++++++++++++++++++++++'
         37        ROPE_INIT                                     3  ~24     '%3Ctd%3E'
         38        INIT_METHOD_CALL                                         !3, 'getRegion'
         39        DO_FCALL                                      0  $22     
         40        ROPE_ADD                                      1  ~24     ~24, $22
         41        ROPE_END                                      2  ~23     ~24, '%3C%2Ftd%3E'
         42        ECHO                                                     ~23
   54    43        ECHO                                                     '++++++++++++++++++++++++++++++++'
         44        ROPE_INIT                                     3  ~28     '%3Ctd%3E'
         45        INIT_METHOD_CALL                                         !3, 'getAuthor'
         46        DO_FCALL                                      0  $26     
         47        ROPE_ADD                                      1  ~28     ~28, $26
         48        ROPE_END                                      2  ~27     ~28, '%3C%2Ftd%3E'
         49        ECHO                                                     ~27
   55    50        ECHO                                                     '++++++++++++++++++++++++++++++++'
         51        ROPE_INIT                                     3  ~32     '%3Ctd%3E'
         52        INIT_METHOD_CALL                                         !3, 'getDownloadCount'
         53        DO_FCALL                                      0  $30     
         54        ROPE_ADD                                      1  ~32     ~32, $30
         55        ROPE_END                                      2  ~31     ~32, '%3C%2Ftd%3E'
         56        ECHO                                                     ~31
   56    57        ECHO                                                     '++++++++++++++++++++++++++++++++'
         58        ROPE_INIT                                     3  ~36     '%3Ctd+class%3D%27text-center%27%3E%3Ca+class%3D%27btn+btn-primary%27+href%3D%27view_package.php%3Fid%3D'
         59        INIT_METHOD_CALL                                         !3, 'getID'
         60        DO_FCALL                                      0  $34     
         61        ROPE_ADD                                      1  ~36     ~36, $34
         62        ROPE_END                                      2  ~35     ~36, '%27%3EView+package%3C%2Fa%3E%3C%2Ftd%3E'
         63        ECHO                                                     ~35
   57    64        ECHO                                                     '++++++++++++++++++++++++++++++++%3C%21--+Edit+button+--%3E%0A++++++++++++++++++++++++++++++++'
   58    65      > JMPZ                                                     !2, ->72
         66    >   ROPE_INIT                                     3  ~40     '%3Ctd+class%3D%27text-center%27%3E%3Ca+class%3D%27btn+btn-success%27+href%3D%27edit_package.php%3Fid%3D'
         67        INIT_METHOD_CALL                                         !3, 'getID'
         68        DO_FCALL                                      0  $38     
         69        ROPE_ADD                                      1  ~40     ~40, $38
         70        ROPE_END                                      2  ~39     ~40, '%27%3EEdit%3C%2Fa%3E%3C%2Ftd%3E'
         71        ECHO                                                     ~39
   59    72    >   ECHO                                                     '++++++++++++++++++++++++++++%3C%2Ftr%3E%0A++++++++++++++++++++++++'
   48    73      > JMP                                                      ->14
         74    >   FE_FREE                                                  $9
   61    75        ECHO                                                     '++++++++++++++++++++++++%3C%2Ftbody%3E%0A++++++++++++++++++++%3C%2Ftable%3E%0A++++++++++++++++++++%3Cform+action%3D%22contents.php%22%3E%0A++++++++++++++++++++++++%3Cnav%3E%0A++++++++++++++++++++++++++++'
   65    76        INIT_FCALL_BY_NAME                                       'buildPackagesPager'
         77        DO_FCALL                                      0          
   66    78        ECHO                                                     '++++++++++++++++++++++++%3C%2Fnav%3E%0A++++++++++++++++++++%3C%2Fform%3E%0A++++++++++++++++'
         79      > JMP                                                      ->81
   69    80    >   ECHO                                                     '++++++++++++++++++++%3Ch5%3ENo+packages+found.%3C%2Fh5%3E%0A++++++++++++++++'
   71    81    >   ECHO                                                     '++++++++++++%3C%2Fdiv%3E%0A++++++++++++%3C%21--+End+database+contents+tab+--%3E%0A%0A%0A++++++++++++%3C%21--+Waiting+approval+tab+--%3E%0A++++++++++++%3Cdiv+class%3D%22tab-pane%22+id%3D%22tab_waiting_approval%22%3E%0A++++++++++++++++%3Cnav+class%3D%22nav%22%3E%0A++++++++++++++++++++%3Ch2+class%3D%22navbar-left%22%3EPending+packages%3C%2Fh2%3E%0A++++++++++++++++%3C%2Fnav%3E%0A++++++++++++++++'
   80    82        COUNT                                            ~43     !4
         83        IS_SMALLER                                               0, ~43
         84      > JMPZ                                                     ~44, ->153
   81    85    >   ECHO                                                     '++++++++++++++++++++%3Ctable+class%3D%22table+table-hover+table-bordered%22%3E%0A++++++++++++++++++++++++%3Cthead%3E%0A++++++++++++++++++++++++%3Ctr%3E%0A++++++++++++++++++++++++++++%3Cth%3EID%3C%2Fth%3E%0A++++++++++++++++++++++++++++%3Cth%3ECategory%3C%2Fth%3E%0A++++++++++++++++++++++++++++%3Cth%3ETitle%3C%2Fth%3E%0A++++++++++++++++++++++++++++%3Cth%3ERegion%3C%2Fth%3E%0A++++++++++++++++++++++++++++%3Cth%3EAuthor%3C%2Fth%3E%0A++++++++++++++++++++++++++++%3Cth%3EDownload+count%3C%2Fth%3E%0A++++++++++++++++++++++++++++%3Cth%3EView+package%3C%2Fth%3E%0A++++++++++++++++++++++++++++'
   91    86      > JMPZ                                                     !2, ->88
         87    >   ECHO                                                     '%3Cth%3EEdit%3C%2Fth%3E'
   92    88    >   ECHO                                                     '++++++++++++++++++++++++%3C%2Ftr%3E%0A++++++++++++++++++++++++%3C%2Fthead%3E%0A++++++++++++++++++++++++%3Ctbody%3E%0A++++++++++++++++++++++++'
   95    89      > FE_RESET_R                                       $45     !4, ->150
         90    > > FE_FETCH_R                                               $45, !3, ->150
   96    91    >   ECHO                                                     '++++++++++++++++++++++++++++%3Ctr%3E%0A++++++++++++++++++++++++++++++++'
   97    92        ROPE_INIT                                     3  ~48     '%3Ctd%3E'
         93        INIT_METHOD_CALL                                         !3, 'getPackageID'
         94        DO_FCALL                                      0  $46     
         95        ROPE_ADD                                      1  ~48     ~48, $46
         96        ROPE_END                                      2  ~47     ~48, '%3C%2Ftd%3E'
         97        ECHO                                                     ~47
   98    98        ECHO                                                     '++++++++++++++++++++++++++++++++'
         99        ROPE_INIT                                     3  ~52     '%3Ctd%3E'
        100        INIT_METHOD_CALL                                         !3, 'getCategory'
        101        DO_FCALL                                      0  $50     
        102        ROPE_ADD                                      1  ~52     ~52, $50
        103        ROPE_END                                      2  ~51     ~52, '%3C%2Ftd%3E'
        104        ECHO                                                     ~51
   99   105        ECHO                                                     '++++++++++++++++++++++++++++++++'
        106        ROPE_INIT                                     3  ~56     '%3Ctd%3E'
        107        INIT_METHOD_CALL                                         !3, 'getTitle'
        108        DO_FCALL                                      0  $54     
        109        ROPE_ADD                                      1  ~56     ~56, $54
        110        ROPE_END                                      2  ~55     ~56, '%3C%2Ftd%3E'
        111        ECHO                                                     ~55
  100   112        ECHO                                                     '++++++++++++++++++++++++++++++++'
        113        ROPE_INIT                                     3  ~60     '%3Ctd%3E'
        114        INIT_METHOD_CALL                                         !3, 'getRegion'
        115        DO_FCALL                                      0  $58     
        116        ROPE_ADD                                      1  ~60     ~60, $58
        117        ROPE_END                                      2  ~59     ~60, '%3C%2Ftd%3E'
        118        ECHO                                                     ~59
  101   119        ECHO                                                     '++++++++++++++++++++++++++++++++'
        120        ROPE_INIT                                     3  ~64     '%3Ctd%3E'
        121        INIT_METHOD_CALL                                         !3, 'getAuthor'
        122        DO_FCALL                                      0  $62     
        123        ROPE_ADD                                      1  ~64     ~64, $62
        124        ROPE_END                                      2  ~63     ~64, '%3C%2Ftd%3E'
        125        ECHO                                                     ~63
  102   126        ECHO                                                     '++++++++++++++++++++++++++++++++'
        127        ROPE_INIT                                     3  ~68     '%3Ctd%3E'
        128        INIT_METHOD_CALL                                         !3, 'getDownloadCount'
        129        DO_FCALL                                      0  $66     
        130        ROPE_ADD                                      1  ~68     ~68, $66
        131        ROPE_END                                      2  ~67     ~68, '%3C%2Ftd%3E'
        132        ECHO                                                     ~67
  103   133        ECHO                                                     '++++++++++++++++++++++++++++++++'
        134        ROPE_INIT                                     3  ~72     '%3Ctd+class%3D%27text-center%27%3E%3Ca+class%3D%27btn+btn-primary%27+href%3D%27view_package.php%3Fid%3D'
        135        INIT_METHOD_CALL                                         !3, 'getID'
        136        DO_FCALL                                      0  $70     
        137        ROPE_ADD                                      1  ~72     ~72, $70
        138        ROPE_END                                      2  ~71     ~72, '%27%3EView+package%3C%2Fa%3E%3C%2Ftd%3E'
        139        ECHO                                                     ~71
  104   140        ECHO                                                     '++++++++++++++++++++++++++++++++%3C%21--+Edit+button+--%3E%0A++++++++++++++++++++++++++++++++'
  105   141      > JMPZ                                                     !2, ->148
        142    >   ROPE_INIT                                     3  ~76     '%3Ctd+class%3D%27text-center%27%3E%3Ca+class%3D%27btn+btn-success%27+href%3D%27edit_package.php%3Fid%3D'
        143        INIT_METHOD_CALL                                         !3, 'getID'
        144        DO_FCALL                                      0  $74     
        145        ROPE_ADD                                      1  ~76     ~76, $74
        146        ROPE_END                                      2  ~75     ~76, '%27%3EEdit%3C%2Fa%3E%3C%2Ftd%3E'
        147        ECHO                                                     ~75
  106   148    >   ECHO                                                     '++++++++++++++++++++++++++++%3C%2Ftr%3E%0A++++++++++++++++++++++++'
   95   149      > JMP                                                      ->90
        150    >   FE_FREE                                                  $45
  108   151        ECHO                                                     '++++++++++++++++++++++++%3C%2Ftbody%3E%0A++++++++++++++++++++%3C%2Ftable%3E%0A++++++++++++++++'
        152      > JMP                                                      ->154
  111   153    >   ECHO                                                     '++++++++++++++++++++%3Ch5%3ENo+pending+packages%3C%2Fh5%3E%0A++++++++++++++++'
  113   154    >   ECHO                                                     '%0A++++++++++++%3C%2Fdiv%3E%0A++++++++++++%3C%21--+End+waiting+approval+tab+--%3E%0A%0A%0A++++++++++++%3C%21--+Download+database+tab+--%3E%0A++++++++++++%3Cdiv+class%3D%22tab-pane%22+id%3D%22tab_download_database%22%3E%0A++++++++++++++++%3Cdiv+class%3D%22jumbotron%22%3E%0A++++++++++++++++++++%3Ch2%3EDownloading+the+database%3C%2Fh2%3E%0A++++++++++++++++++++%3Cp+style%3D%22font-size%3A+16px%22%3E%0A++++++++++++++++++++++++Downloading+the+database+is+only+useful+for+users+who+still+want+to+use+old+PSNDLv1%2C%0A++++++++++++++++++++++++PSNStuffX+or+any+compatible+software.%0A++++++++++++++++++++++++%3Cbr%2F%3E%0A++++++++++++++++++++++++Please+note+that+I+highly+recommend+you+to+get+used+to+this+website+instead.%0A++++++++++++++++++++%3C%2Fp%3E%0A++++++++++++++++++++%3Ca+class%3D%22btn+btn-primary+btn-lg%22+href%3D%22%2Fcontroller%2Fdownload_database.php%22%3EDownload%3C%2Fa%3E%0A++++++++++++++++%3C%2Fdiv%3E%0A++++++++++++%3C%2Fdiv%3E%0A++++++++++++%3C%21--+End+download+database+tab+--%3E%0A%0A++++++++%3C%2Fdiv%3E%0A++++%3C%2Fdiv%3E%0A%3C%2Fdiv%3E%0A%3C%2Fbody%3E%0A%3C%2Fhtml%3E'
  137   155      > RETURN                                                   1

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
171.48 ms | 1415 KiB | 13 Q