3v4l.org

run code in 300+ PHP versions simultaneously
<?php include('session.php'); ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Admin Panel</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content="Charisma, a fully featured, responsive, HTML5, Bootstrap admin template."> <meta name="author" content="Neema & Namu"> <!-- The styles --> <link id="bs-css" href="css/bootstrap-cerulean.min.css" rel="stylesheet"> <link href="css/charisma-app.css" rel="stylesheet"> <link href='bower_components/fullcalendar/dist/fullcalendar.css' rel='stylesheet'> <link href='bower_components/fullcalendar/dist/fullcalendar.print.css' rel='stylesheet' media='print'> <link href='bower_components/chosen/chosen.min.css' rel='stylesheet'> <link href='bower_components/colorbox/example3/colorbox.css' rel='stylesheet'> <link href='bower_components/responsive-tables/responsive-tables.css' rel='stylesheet'> <link href='bower_components/bootstrap-tour/build/css/bootstrap-tour.min.css' rel='stylesheet'> <link href='css/jquery.noty.css' rel='stylesheet'> <link href='css/noty_theme_default.css' rel='stylesheet'> <link href='css/elfinder.min.css' rel='stylesheet'> <link href='css/elfinder.theme.css' rel='stylesheet'> <link href='css/jquery.iphone.toggle.css' rel='stylesheet'> <link href='css/uploadify.css' rel='stylesheet'> <link href='css/animate.min.css' rel='stylesheet'> <!-- jQuery --> <script src="bower_components/jquery/jquery.min.js"></script> <!-- The HTML5 shim, for IE6-8 support of HTML5 elements --> <!--[if lt IE 9]> <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <!-- The fav icon --> <link rel="shortcut icon" href="img/favicon.ico"> </head> <body> <?php error_reporting(E_ALL ^E_NOTICE ^E_WARNING); include_once("header.php");?> <noscript> <div class="alert alert-block col-md-12"> <h4 class="alert-heading">Warning!</h4> <p>You need to have <a href="http://en.wikipedia.org/wiki/JavaScript" target="_blank">JavaScript</a> enabled to use this site.</p> </div> </noscript> <div id="content" class="col-lg-10 col-sm-10"> <!-- content starts --> <div> <ul class="breadcrumb"> <li> <a href="dashboard.php">Home</a> </li> <li> <a href="#">Openings List</a> </li> </ul> </div> <div class="row"> <div class="box col-md-12"> <div class="box-inner"> <div class="box-header well" data-original-title=""> <h2><i class="glyphicon glyphicon-user"></i> List of Current Online Openings</h2> <div class="box-icon"> <a href="#" class="btn btn-setting btn-round btn-default"><i class="glyphicon glyphicon-cog"></i></a> <a href="#" class="btn btn-minimize btn-round btn-default"><i class="glyphicon glyphicon-chevron-up"></i></a> <a href="#" class="btn btn-close btn-round btn-default"><i class="glyphicon glyphicon-remove"></i></a> </div> </div> <div class="box-content"> <div class="alert alert-info"> <a class="btn btn-danger btn-sm" href="addjobopening.php"> <i class="glyphicon glyphicon-plus icon-white"></i> Add Job Opening </a><!--For help with such table please check <a href="http://datatables.net/" target="_blank">http://datatables.net/</a>--></div> <table class="table table-striped table-bordered bootstrap-datatable datatable responsive"> <thead> <tr> <th>Sr. No.</th> <th>Job Title</th> <th>Job Code</th> <th>Opening Duration</th> <th>Options</th> </tr> </thead> <tbody> <?php $qct ="SELECT * FROM `jobopening` where `job_status`='1'"; $result=mysql_query($qct); $ctnrow=mysql_num_rows($result); if($ctnrow >=1){ $count=1; while($qres=mysql_fetch_array($result)){ //print_r($qres); ?> <tr> <td><?php echo "$count";?></td> <td class="center"><?=$qres['job_title']; ?></td> <td class="center"><?=$qres['job_code']; ?></td> <td class="center"> <?=$qres['job_postdate']; ?> - <?=$qres['job_enddate']; ?> </td> <td class="center"> <a class="btn btn-info" href="editjobopening.php?id=<?=$qres['openingid'];?>"> <i class="glyphicon glyphicon-edit icon-white"></i> Edit </a> <?php if($qres['job_status']==1) { ?> <a class="btn btn-danger" href="modify.php?opening_id=<?=$qres['openingid']?>&job_status=deact_job" onClick="return confirm('Are you sure to Close opening?')"> <i class="glyphicon glyphicon-trash icon-white"></i> Close </a> <? } ?> </td> </tr> <? $count=$count+1; } } ?> </tbody> </table> </div> </div> </div> <!--/span--> </div><!--/row--> </div><!--/#content.col-md-0--> </div><!--/fluid-row--> <hr> <div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal">?</button> <h3>Settings</h3> </div> <div class="modal-body"> <p>Here settings can be configured...</p> </div> <div class="modal-footer"> <a href="#" class="btn btn-default" data-dismiss="modal">Close</a> <a href="#" class="btn btn-primary" data-dismiss="modal">Save changes</a> </div> </div> </div> </div> <?php include_once('footer.php'); ?> </div><!--/.fluid-container--> <!-- external javascript --> <script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script> <!-- library for cookie management --> <script src="js/jquery.cookie.js"></script> <!-- calender plugin --> <script src='bower_components/moment/min/moment.min.js'></script> <script src='bower_components/fullcalendar/dist/fullcalendar.min.js'></script> <!-- data table plugin --> <script src='js/jquery.dataTables.min.js'></script> <!-- select or dropdown enhancer --> <script src="bower_components/chosen/chosen.jquery.min.js"></script> <!-- plugin for gallery image view --> <script src="bower_components/colorbox/jquery.colorbox-min.js"></script> <!-- notification plugin --> <script src="js/jquery.noty.js"></script> <!-- library for making tables responsive --> <script src="bower_components/responsive-tables/responsive-tables.js"></script> <!-- tour plugin --> <script src="bower_components/bootstrap-tour/build/js/bootstrap-tour.min.js"></script> <!-- star rating plugin --> <script src="js/jquery.raty.min.js"></script> <!-- for iOS style toggle switch --> <script src="js/jquery.iphone.toggle.js"></script> <!-- autogrowing textarea plugin --> <script src="js/jquery.autogrow-textarea.js"></script> <!-- multiple file upload plugin --> <script src="js/jquery.uploadify-3.1.min.js"></script> <!-- history.js for cross-browser state change on ajax --> <script src="js/jquery.history.js"></script> <!-- application script for Charisma demo --> <script src="js/charisma.js"></script> </body> </html>

Here you find the average performance (time & memory) of each version. A grayed out version indicates it didn't complete successfully (based on exit-code).

VersionSystem time (s)User time (s)Memory (MiB)
8.3.40.0110.00418.79
8.3.30.0110.00318.83
8.3.20.0000.00720.51
8.3.10.0040.00421.88
8.3.00.0090.00019.38
8.2.170.0170.00022.96
8.2.160.0100.00320.57
8.2.150.0090.00025.66
8.2.140.0040.00424.66
8.2.130.0070.00026.16
8.2.120.0040.00420.73
8.2.110.0040.00822.07
8.2.100.0080.00317.68
8.2.90.0000.00919.09
8.2.80.0000.00817.97
8.2.70.0000.00817.50
8.2.60.0050.00317.80
8.2.50.0050.00318.07
8.2.40.0030.00521.25
8.2.30.0040.00420.54
8.2.20.0040.00417.66
8.2.10.0040.00417.91
8.2.00.0050.00317.84
8.1.270.0060.00323.96
8.1.260.0000.00826.35
8.1.250.0040.00428.09
8.1.240.0060.00322.45
8.1.230.0040.00717.52
8.1.220.0080.00017.74
8.1.210.0050.00318.77
8.1.200.0000.01017.23
8.1.190.0000.00817.10
8.1.180.0030.00618.10
8.1.170.0050.00318.87
8.1.160.0000.00721.99
8.1.150.0000.00718.80
8.1.140.0040.00419.40
8.1.130.0000.00717.52
8.1.120.0070.00017.41
8.1.110.0030.00717.40
8.1.100.0040.00417.36
8.1.90.0030.00317.27
8.1.80.0000.00817.35
8.1.70.0030.00317.28
8.1.60.0040.00417.44
8.1.50.0040.00417.48
8.1.40.0000.00817.45
8.1.30.0080.00017.52
8.1.20.0050.00317.63
8.1.10.0070.00017.57
8.1.00.0060.00317.36
8.0.300.0040.00418.77
8.0.290.0000.00716.75
8.0.280.0040.00418.41
8.0.270.0080.00017.22
8.0.260.0000.00617.19
8.0.250.0070.00017.02
8.0.240.0050.00317.02
8.0.230.0000.00716.94
8.0.220.0070.00016.94
8.0.210.0040.00416.91
8.0.200.0050.00217.04
8.0.190.0000.00817.03
8.0.180.0030.00516.89
8.0.170.0000.00816.83
8.0.160.0000.00716.96
8.0.150.0040.00416.85
8.0.140.0040.00416.73
8.0.130.0000.00513.45
8.0.120.0040.00416.92
8.0.110.0080.00016.97
8.0.100.0070.00016.98
8.0.90.0030.00316.81
8.0.80.0060.01016.93
8.0.70.0040.00416.90
8.0.60.0040.00416.88
8.0.50.0050.00316.76
8.0.30.0100.01017.01
8.0.20.0090.01117.40
8.0.10.0000.00816.84
8.0.00.0090.01216.75
7.4.330.0060.00015.08
7.4.320.0030.00316.43
7.4.300.0060.00016.30
7.4.290.0050.00216.51
7.4.280.0050.00316.50
7.4.270.0050.00516.48
7.4.260.0070.00016.41
7.4.250.0040.00416.43
7.4.240.0050.00216.53
7.4.230.0030.00316.43
7.4.220.0120.01116.40
7.4.210.0090.00616.48
7.4.200.0040.00416.35
7.4.160.0030.01216.63
7.4.150.0140.00417.40
7.4.140.0110.00917.86
7.4.130.0030.01416.37
7.4.120.0130.00516.33
7.4.110.0070.01316.55
7.4.100.0000.01616.47
7.4.90.0100.01416.52
7.4.80.0090.01219.39
7.4.70.0030.01316.53
7.4.60.0060.01216.34
7.4.50.0040.00416.42
7.4.40.0160.00016.38
7.4.30.0110.00616.13
7.4.10.0060.01315.05
7.4.00.0050.01214.69
7.3.330.0000.00613.23
7.3.320.0000.00613.27
7.3.310.0040.00416.19
7.3.300.0000.00716.27
7.3.290.0110.00516.20
7.3.280.0110.00516.24
7.3.270.0090.00917.40
7.3.260.0150.00316.51
7.3.250.0080.01016.28
7.3.240.0090.01116.16
7.3.230.0070.01016.39
7.3.210.0070.01016.31
7.3.200.0100.01216.48
7.3.190.0030.01216.48
7.3.180.0060.01616.48
7.3.170.0120.00416.27
7.3.160.0090.00616.29
7.3.130.0070.01014.54
7.3.120.0090.00914.86
7.3.110.0160.00314.96
7.3.100.0110.00414.49
7.3.90.0000.00914.73
7.3.80.0100.00314.70
7.3.70.0040.01114.75
7.3.60.0060.00914.58
7.3.50.0060.00614.76
7.3.40.0030.00614.77
7.3.30.0030.01014.58
7.3.20.0040.01216.27
7.3.10.0080.00616.48
7.3.00.0020.01016.58
7.2.330.0100.00716.29
7.2.320.0100.00616.58
7.2.310.0080.01616.42
7.2.300.0040.01216.34
7.2.290.0070.00716.50
7.2.260.0100.00714.80
7.2.250.0070.01014.84
7.2.240.0060.00914.61
7.2.230.0030.01014.72
7.2.220.0090.00614.83
7.2.210.0030.01314.85
7.2.200.0070.01014.78
7.2.190.0130.00014.66
7.2.180.0060.00914.75
7.2.170.0060.00914.71
7.2.160.0120.00315.06
7.2.150.0030.01216.61
7.2.140.0150.00316.46
7.2.130.0030.00916.73
7.2.120.0000.01016.79
7.2.110.0070.00716.85
7.2.100.0050.01216.71
7.2.90.0020.00916.92
7.2.80.0050.00616.84
7.2.70.0070.00916.68
7.2.60.0080.00716.87
7.2.50.0080.00316.73
7.2.40.0060.00716.78
7.2.30.0050.00816.77
7.2.20.0060.00616.82
7.2.10.0070.00516.82
7.2.00.0010.01117.55
7.1.330.0130.00015.75
7.1.320.0090.00615.33
7.1.310.0000.00915.26
7.1.300.0070.00715.33
7.1.290.0000.01015.39
7.1.280.0040.01115.60
7.1.270.0090.00615.29
7.1.260.0100.00715.56
7.1.250.0030.00715.73
7.1.240.0030.01115.72
7.1.230.0100.00715.51
7.1.220.0110.00415.56
7.1.210.0030.00915.35
7.1.200.0030.01015.57
7.1.190.0090.00915.39
7.1.180.0060.01215.59
7.1.170.0030.00515.70
7.1.160.0000.01515.39
7.1.150.0070.00715.36
7.1.140.0090.00315.68
7.1.130.0060.00615.65
7.1.120.0070.00715.21
7.1.110.0060.00615.68
7.1.100.0080.00716.56
7.1.90.0100.00315.52
7.1.80.0030.01015.65
7.1.70.0080.00516.20
7.1.60.0080.01117.22
7.1.50.0060.00916.14
7.1.40.0000.00915.73
7.1.30.0030.00915.68
7.1.20.0060.00915.54
7.1.10.0040.00415.70
7.1.00.0030.04118.91
7.0.330.0090.00015.27
7.0.320.0060.00315.20
7.0.310.0000.01215.24
7.0.300.0060.00615.16
7.0.290.0030.00615.19
7.0.280.0110.00415.35
7.0.270.0060.00615.24
7.0.260.0030.01015.30
7.0.250.0040.00815.38
7.0.240.0070.00715.14
7.0.230.0120.00315.38
7.0.220.0000.01515.21
7.0.210.0100.00015.52
7.0.200.0070.00515.96
7.0.190.0050.00815.43
7.0.180.0030.00615.22
7.0.170.0030.00715.32
7.0.160.0040.01215.05
7.0.150.0040.00815.26
7.0.140.0070.00715.10
7.0.130.0090.00315.31
7.0.120.0040.00714.97
7.0.110.0070.00715.14
7.0.100.0060.00615.33
7.0.90.0090.00615.29
7.0.80.0000.01415.41
7.0.70.0000.00815.39
7.0.60.0620.03318.43
7.0.50.0070.04016.47
7.0.40.0090.04616.58
7.0.30.0170.02716.69
7.0.20.0130.03216.78
7.0.10.0200.04216.58
7.0.00.0090.04416.70
5.6.400.0090.00914.09
5.6.390.0030.00513.96
5.6.380.0000.00914.46
5.6.370.0030.01214.00
5.6.360.0100.00314.38
5.6.350.0030.01314.39
5.6.340.0100.00713.82
5.6.330.0050.00514.37
5.6.320.0070.00713.90
5.6.310.0000.01313.99
5.6.300.0030.01314.33
5.6.290.0060.00614.04
5.6.280.0020.03917.46
5.6.270.0030.01014.09
5.6.260.0080.00313.82
5.6.250.0000.01414.15
5.6.240.0110.00614.03
5.6.230.0030.01013.98
5.6.220.0060.00914.30
5.6.210.0530.03817.38
5.6.200.0050.03016.19
5.6.190.0100.04317.11
5.6.180.1020.03817.43
5.6.170.0300.03817.14
5.6.160.0080.03517.27
5.6.150.0030.03316.00
5.6.140.0080.04516.03
5.6.130.0020.03516.13
5.6.120.0020.02817.66
5.6.110.0030.04117.59
5.6.100.0100.01817.53
5.6.90.0110.04017.44
5.6.80.0050.02317.34
5.6.70.0120.00413.79
5.6.60.0090.00613.78
5.6.50.0080.00414.23
5.6.40.0060.00314.31
5.6.30.0040.00413.91
5.6.20.0040.01114.12
5.6.10.0110.00313.88
5.6.00.0070.00714.07
5.5.380.0030.01013.85
5.5.370.0000.01513.86
5.5.360.0080.00613.88
5.5.350.0080.04717.19
5.5.340.0060.04315.89
5.5.330.0080.02017.13
5.5.320.0100.04517.27
5.5.310.0130.02216.99
5.5.300.0050.02615.81
5.5.290.0030.02715.97
5.5.280.0050.02517.43
5.5.270.0030.05017.28
5.5.260.0030.04817.43
5.5.250.0120.03317.17
5.5.240.0080.04617.00
5.5.230.0030.00614.20
5.5.220.0030.01013.80
5.5.210.0100.00314.13
5.5.200.0060.00313.63
5.5.190.0100.00314.04
5.5.180.0090.00613.95
5.5.170.0040.00413.87
5.5.160.0090.00413.77
5.5.150.0060.00914.01
5.5.140.0000.00914.13
5.5.130.0100.00313.73
5.5.120.0130.00713.80
5.5.110.0030.01313.82
5.5.100.0080.00414.18
5.5.90.0040.01113.91
5.5.80.0000.01514.11
5.5.70.0060.01213.74
5.5.60.0100.00313.82
5.5.50.0040.00413.95
5.5.40.0060.00314.02
5.5.30.0030.01014.13
5.5.20.0090.00613.95
5.5.10.0040.01214.20
5.5.00.0060.00314.02
5.4.450.0330.03115.17
5.4.440.0310.03115.28
5.4.430.0350.02815.25
5.4.420.0260.03115.16
5.4.410.0280.03415.22
5.4.400.0260.03415.02
5.4.390.0180.02814.91
5.4.380.0080.03414.95
5.4.370.0080.04014.92
5.4.360.0030.03314.91
5.4.350.0390.03015.18
5.4.340.0370.02915.04
5.4.330.0070.00711.09
5.4.320.0380.03515.09
5.4.310.0310.02814.96
5.4.300.0270.03215.18
5.4.290.0400.02014.90
5.4.280.0300.03215.02
5.4.270.0370.03214.90
5.4.260.0250.03315.05
5.4.250.0410.02515.24
5.4.240.0220.03014.99
5.4.230.0140.02214.87
5.4.220.0130.03815.18
5.4.210.0300.03414.97
5.4.200.0400.03615.12
5.4.190.0350.03215.15
5.4.180.0400.02514.89
5.4.170.0380.02614.85
5.4.160.0310.03515.07
5.4.150.0330.03014.86
5.4.140.0420.02713.77
5.4.130.0400.02613.61
5.4.120.0350.02013.67
5.4.110.0300.03413.54
5.4.100.0380.02813.63
5.4.90.0360.02613.64
5.4.80.0370.03213.56
5.4.70.0380.02713.71
5.4.60.0330.02813.50
5.4.50.0330.03213.46
5.4.40.0320.02713.67
5.4.30.0300.03013.67
5.4.20.0360.02713.48
5.4.10.0360.02813.68
5.4.00.0100.03013.24

preferences:
60.69 ms | 400 KiB | 5 Q