Why Isn't The Appended Row's Data Displayed After Being Submitted? November 26, 2023 Post a Comment this is my php code(1st page): 1 Solution 1: Change your secound page to something like this: <table width="600px" id="project"> <?php $index = 1; while(isset($_POST["pro_".$index])) { ?> <tr> <td><?php echo $index; ?></td> <td><?php echo $_POST["pro_".$index]; ?></td> </tr> <?php $index++; } ?> </table> Copy Share You may like these postsAjax Transfer Type Gets Overwriten By UrlAppend Json Array From Localstorage To Json File On ServerWoocommerce Shop Page: Quantity Input On Add To Cart ButtonCall Ajax Each Time When A Checkbox Is Checked In Php Post a Comment for "Why Isn't The Appended Row's Data Displayed After Being Submitted?"