diff options
author | Colin Viebrock <cmv@php.net> | 2000-04-05 20:18:58 +0000 |
---|---|---|
committer | Colin Viebrock <cmv@php.net> | 2000-04-05 20:18:58 +0000 |
commit | 6882044a468a5d079e08588817632df6de20d7af (patch) | |
tree | 11638e68711604cf073af3e9468e41808ee1774f /ext/mysql/php_mysql.c | |
parent | 1ddc9ff852b8698fd395ff771c6aa214d9543d9a (diff) | |
download | php-git-6882044a468a5d079e08588817632df6de20d7af.tar.gz |
phpinfo() prettying
Diffstat (limited to 'ext/mysql/php_mysql.c')
-rw-r--r-- | ext/mysql/php_mysql.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/mysql/php_mysql.c b/ext/mysql/php_mysql.c index 471db3f26f..5406880e09 100644 --- a/ext/mysql/php_mysql.c +++ b/ext/mysql/php_mysql.c @@ -293,7 +293,7 @@ PHP_MINFO_FUNCTION(mysql) DISPLAY_INI_ENTRIES(); - php_printf("<table border=5 width=\"600\">"); + php_info_print_table_start(); php_info_print_table_header(2, "Key", "Value"); sprintf(buf, "%ld", MySG(num_persistent)); php_info_print_table_row(2, "Active Persistent Links", buf); @@ -305,7 +305,7 @@ PHP_MINFO_FUNCTION(mysql) php_info_print_table_row(2, "MYSQL_LFLAGS", PHP_MYSQL_LFLAGS); php_info_print_table_row(2, "MYSQL_LIBS", PHP_MYSQL_LIBS); #endif - php_printf("</table>\n"); + php_info_print_table_end(); } |