recently, had modify php.ini file first time change allow_url_fopen, particular web host needed me create new php.ini modify of default settings. did, , contains allow_url_fopen = 1, , world.
but i'm getting weird behavior when inserting new rows in mysql table. did not change php or sql related this, when insert new row, inserted somewhere in middle of table, rather @ end of table. i've been using same code months , it's been working fine until now.
could creating new php.ini file have messed these preferences somehow? searching through internet turned absolutely nothing.
edit: there rather clear pattern now: rows id being placed @ end of table:
+-----+ | id | +-----+ | 300 | | 301 | | 302 | | 320 | | 319 | | 318 | | 317 | | 316 | | 315 | | 314 | +-----+ ...and on.
you can sort them clicking on id in phpmyadmin or resort try this:
alter table `table` order `id` ;
Comments
Post a Comment