3v4l.org

run code in 300+ PHP versions simultaneously
<table style='width:100%'> <?php if ($result->num_rows > 0) { // output data of each row while($row = $result->fetch_assoc()) { ?> <tr> <th><?= $row['placement']; ?></th> <th><?= $row['team']; ?></th> <th><?= $row['played']; ?></th> <th><?= $row['won']; ?></th> <th><?= $row['tied']; ?></th> <th><?= $row['loss']; ?></th> <th><?= $row['goaldifference']; ?></th> <th><?= $row['points']; ?></th> </tr> <br><br> <?php } } ?> </table>
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.4, 8.3.6
<table style='width:100%'> Warning: Undefined variable $result in /in/6Kskq on line 3 Warning: Attempt to read property "num_rows" on null in /in/6Kskq on line 3 </table>
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 <table style='width:100%'> Warning: Undefined variable $result in /in/6Kskq on line 3 Warning: Attempt to read property "num_rows" on null in /in/6Kskq on line 3 </table>
Output for 7.2.0 - 7.2.33, 7.3.0 - 7.3.31, 7.4.0 - 7.4.33
<table style='width:100%'> Notice: Undefined variable: result in /in/6Kskq on line 3 Notice: Trying to get property 'num_rows' of non-object in /in/6Kskq on line 3 </table>
Output for 7.3.32 - 7.3.33
<table style='width:100%'> </table>
Output for 7.0.0 - 7.0.25, 7.1.0 - 7.1.25
<table style='width:100%'> Notice: Undefined variable: result in /in/6Kskq on line 3 Notice: Trying to get property of non-object in /in/6Kskq on line 3 </table>

preferences:
168.05 ms | 402 KiB | 196 Q