This code displays the contents of an array in the format:
1 2 3 4
1 2 3 4
etc...
$data = $_POST['data'];
foreach ($data as $tempone) {
foreach ($tempone as $key=>$temptwo) {
echo "$temptwo", "\n";
}
echo "<br>";
}
How can I get those results and use them in an email?
$message .= "the forloop results here"
There's a few similar questions about but none using a Multidimensional arrays.