Loop through $_POST values
I have a very simple form on my website. I run this PHP to loop the form contents: echo ‘<pre>’; var_dump($_POST); echo ‘</pre>’; $i = 0; foreach($_POST as $key => $value) { $i++; echo $value[$i][‘row_id’]; } I get the below: array(1) { ["data"]=> array(2) { [1]=> array(2) { ["row_id"]=> string(5) "33714" ["sport"]=> string(8) "swimming" }… Read More Loop through $_POST values