You are here

function drupalforfirebug_html_show_array in Drupal For Firebug 5

File

./drupalforfirebug.module, line 429

Code

function drupalforfirebug_html_show_array($array) {
  $output = "<table cellspacing=\"0\" border=\"2\">\n";
  $output .= drupalforfirebug_show_array($array, 1, 0);
  $output .= "</table>\n";
  return $output;
}