3v4l.org

run code in 300+ PHP versions simultaneously
<?php $menu_id = $_POST['menu_id']; $menu_name = $_POST['menu_name']; $yes = $_POST['yes']; ?> <form action=""> <table> <thead> <tr> <th>Menu Id</th> <th>Menu Name</th> <th>Yes/No</th> </tr> </thead> <tbody> <?php foreach($result as $res) { ?> <tr> <td><input type="text" name="menu_id[]" value="<?= $res->menu_id ?>"></td> <td><input type="text" name="menu_name[]" value="<?= $res->menu_name ?>"></td> <td><input type="checkbox" name="yes[]" value="<?= $res->menu_id ?>"></td> </tr> <?php } ?> </tbody> </table>
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.34, 8.2.0 - 8.2.30, 8.3.0 - 8.3.30, 8.4.1 - 8.4.18, 8.5.0 - 8.5.3
Warning: Undefined array key "menu_id" in /in/SIu5D on line 3 Warning: Undefined array key "menu_name" in /in/SIu5D on line 4 Warning: Undefined array key "yes" in /in/SIu5D on line 5 <form action=""> <table> <thead> <tr> <th>Menu Id</th> <th>Menu Name</th> <th>Yes/No</th> </tr> </thead> <tbody> Warning: Undefined variable $result in /in/SIu5D on line 19 Warning: foreach() argument must be of type array|object, null given in /in/SIu5D on line 19 </tbody> </table>
Output for 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.31, 7.4.0 - 7.4.33
Notice: Undefined index: menu_id in /in/SIu5D on line 3 Notice: Undefined index: menu_name in /in/SIu5D on line 4 Notice: Undefined index: yes in /in/SIu5D on line 5 <form action=""> <table> <thead> <tr> <th>Menu Id</th> <th>Menu Name</th> <th>Yes/No</th> </tr> </thead> <tbody> Notice: Undefined variable: result in /in/SIu5D on line 19 Warning: Invalid argument supplied for foreach() in /in/SIu5D on line 19 </tbody> </table>
Output for 7.3.32 - 7.3.33
<form action=""> <table> <thead> <tr> <th>Menu Id</th> <th>Menu Name</th> <th>Yes/No</th> </tr> </thead> <tbody> Warning: Invalid argument supplied for foreach() in /in/SIu5D on line 19 </tbody> </table>

preferences:
84.31 ms | 1715 KiB | 4 Q