Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function recursiveData(array $array, $level = 1)
- {
- $table = "<tbody>";
- foreach ($array as $key => $value) {
- if (!is_array($value)) {
- $table .= "<tr><td>" . $value . "</td></tr>";
- } else {
- recursiveData($value, $level + 1);
- }
- }
- $table .= "</tbody>";
- $table .= "</table>";
- return $table;
- }
Advertisement
Add Comment
Please, Sign In to add comment