New answers tagged phpmyadmin
0
As suggested from this bug report, you may need to look into the following:
File Format
Run SHOW VARIABLES LIKE 'innodb_file_format%';
innodb_file_format
innodb_file_format_max
You might see values Antelope, Barracuda
Row Format
Run ALTER TABLE tblname ROW_FORMAT=DYNAMIC; to make the row format Dynamic
Run ALTER TABLE tblname ROW_FORMAT=COMPRESSED; ...
0
This is not for http://dba.stackexchange.com :) but you have to execute your query into the while and put your result into an associative array then walk through the array(this is only true if your second query returns only one record) to print your table.
Like this:
$cari_user = "SELECT user from user WHERE area = 'Jatim Utara'"; //query1 to find user
...
Top 50 recent answers are included