Hi,
since this patch:
http://cvs.sourceforge.net/viewcvs.py/phpmyadmin/phpMyAdmin/tbl_properties_s...
if (PMA_MYSQL_INT_VERSION >= 40102) { $show_create_table = PMA_DBI_fetch_value( 'SHOW CREATE TABLE ' . PMA_backquote($db) . '.' . PMA_backquote($table), 0, 1 ); $analyzed_sql = PMA_SQP_analyze( PMA_SQP_parse( $show_create_table ) ); }
we have a problem using the mysqli extension. Clicking on a table name from the left panel generates:
Notice: Undefined index: len in libraries/sqlparser.lib.php on line 697
$show_create_table is empty.
Marc