~ubuntu-branches/debian/experimental/phpmyadmin/experimental

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
<?php

/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 *
 * @package PhpMyAdmin
 */

/**
*
*/
require_once './libraries/common.inc.php';

/**
 * Does the common work
 */
$GLOBALS['js_include'][] = 'server_synchronize.js';
require_once './libraries/server_common.inc.php';

/**
* Contains all the functions specific to synchronization
*/
require './libraries/server_synchronize.lib.php';

/**
 * Increases the time limit up to the configured maximum
 */
@set_time_limit($cfg['ExecTimeLimit']);

/**
 * Displays the links
 */
require './libraries/server_links.inc.php';

/**
* Enables warnings on the page
*/
//$cfg['Error_Handler']['display'] = true;
//$cfg['Error_Handler']['gather'] = true;

/**
* Save the value of token generated for this page
*/
if (isset($_REQUEST['token'])) {
    $_SESSION['token'] = $_REQUEST['token'];
}

// variable for code saving
$cons = array ("src", "trg");

/**
 * Displays the page when 'Go' is pressed
 */

if ((isset($_REQUEST['submit_connect']))) {
    foreach ($cons as $con) {
        ${"{$con}_host"}     = $_REQUEST[$con . '_host'];
        ${"{$con}_username"} = $_REQUEST[$con . '_username'];
        ${"{$con}_password"} = $_REQUEST[$con . '_pass'];
        ${"{$con}_port"}     = $_REQUEST[$con . '_port'];
        ${"{$con}_socket"}   = $_REQUEST[$con . '_socket'];
        ${"{$con}_db"}       = $_REQUEST[$con . '_db'];
        ${"{$con}_type"}     = $_REQUEST[$con . '_type'];

        if (${"{$con}_type"} == 'cur') {
            ${"{$con}_connection"} = null;
            ${"{$con}_server"} = null;
            ${"{$con}_db"}       = $_REQUEST[$con . '_db_sel'];
            continue;
        }

        if (isset(${"{$con}_socket"}) && ! empty(${"{$con}_socket"})) {
            ${"{$con}_server"}['socket'] = ${"{$con}_socket"};
        } else {
            ${"{$con}_server"}['host'] = ${"{$con}_host"};
            if (isset(${"{$con}_port"})
                && ! empty(${"{$con}_port"})
                && ((int)${"{$con}_port"} * 1) > 0
            ) {
                ${"{$con}_server"}['port'] = (int)${"{$con}_port"};
            }
        }

        ${"{$con}_connection"} = PMA_DBI_connect(${"{$con}_username"},
            ${"{$con}_password"}, $is_controluser = false,
            ${"{$con}_server"}, $auxiliary_connection = true);
    } // end foreach ($cons as $con)

    if ((! $src_connection && $src_type != 'cur')
        || (! $trg_connection && $trg_type != 'cur')
    ) {
        /**
        * Displays the connection error string if
        * connections are not established
        */

        echo '<div class="error">';
        if (! $src_connection && $src_type != 'cur') {
            echo __('Could not connect to the source') . '<br />';
        }
        if (! $trg_connection && $trg_type != 'cur') {
            echo __('Could not connect to the target');
        }
        echo '</div>';
        unset($_REQUEST['submit_connect']);

    } else {
        /**
        * Creating the link object for both source and target databases and
        * selecting the source and target databases using these links
        */
        foreach ($cons as $con) {
            if (${"{$con}_connection"} != null) {
                ${"{$con}_link"} = PMA_DBI_connect(${"{$con}_username"},
                    ${"{$con}_password"}, $is_controluser = false, ${"{$con}_server"});
            } else {
                ${"{$con}_link"} = null;
            }
            ${"{$con}_db_selected"} = PMA_DBI_select_db(${"{$con}_db"}, ${"{$con}_link"});
            ${"{$con}_version"} = PMA_DBI_fetch_value('SELECT VERSION()', 0, 0, ${"{$con}_link"});
            ${"{$con}_is_drizzle"} = (bool)preg_match('/\d{4}\./', ${"{$con}_version"});
        } // end foreach ($cons as $con)

        if (($src_db_selected != 1) || ($trg_db_selected != 1)) {
            /**
            * Displays error string if the database(s) did not exist
            */
            echo '<div class="error">';
            if ($src_db_selected != 1) {
                echo sprintf(__('\'%s\' database does not exist.'), htmlspecialchars($src_db));
            }
            if ($trg_db_selected != 1) {
                echo sprintf(__('\'%s\' database does not exist.'), htmlspecialchars($trg_db));
            }
            echo '</div>';
            unset($_REQUEST['submit_connect']);

        } else if (($src_db_selected == 1) && ($trg_db_selected == 1)) {

            /**
            * Using PMA_DBI_get_tables() to get all the tables
            * from target and source databases.
            */
            $src_tables = PMA_DBI_get_tables($src_db, $src_link);
            $source_tables_num = sizeof($src_tables);

            $trg_tables = PMA_DBI_get_tables($trg_db, $trg_link);
            $target_tables_num = sizeof($trg_tables);

            /**
            * initializing arrays to save matching and non-matching
            * table names from target and source databases.
            */
            $unmatched_num_src = 0;
            $source_tables_uncommon = array();
            $unmatched_num_trg = 0;
            $target_tables_uncommon = array();
            $matching_tables = array();
            $matching_tables_num = 0;

            /**
            * Using PMA_getMatchingTables to find which of the tables' names match
            * in target and source database.
            */
            PMA_getMatchingTables($trg_tables, $src_tables, $matching_tables, $source_tables_uncommon);
            /**
            * Finding the uncommon tables for the target database
            * using function PMA_getNonMatchingTargetTables()
            */
            PMA_getNonMatchingTargetTables($trg_tables, $matching_tables, $target_tables_uncommon);

            /**
            * Initializing several arrays to save the data and structure
            * difference between the source and target databases.
            */
            $row_count = array();   //number of rows in source table that needs to be created in target database
            $fields_num = array();  //number of fields in each matching table
            $delete_array = array(); //stores the primary key values for target tables that have excessive rows than corresponding source tables.
            $insert_array = array(array(array()));// stores the primary key values for the rows in each source table that are not present in target tables.
            $update_array = array(array(array())); //stores the primary key values, name of field to be updated, value of the field to be updated for
                                                    // each row of matching table.
            $matching_tables_fields = array(); //contains the fields' names for each matching table
            $matching_tables_keys   = array(); //contains the primary keys' names for each matching table
            $uncommon_tables_fields = array(); //coantains the fields for all the source tables that are not present in target
            $matching_tables_num = sizeof($matching_tables);

            $source_columns = array();  //contains the full columns' information for all the source tables' columns
            $target_columns = array();  //contains the full columns' information for all the target tables' columns
            $uncommon_columns = array(); //contains names of columns present in source table but absent from the corresponding target table
            $source_indexes = array();   //contains indexes on all the source tables
            $target_indexes = array();   //contains indexes on all the target tables
            $add_indexes_array = array(); //contains the indexes name present in source but absent from target tables
            $target_tables_keys = array(); //contains the keys of all the target tables
            $alter_indexes_array = array();  //contains the names of all the indexes for each table that need to be altered in target database
            $remove_indexes_array = array();  //contains the names of indexes that are excessive in target tables
            $alter_str_array = array(array());  //contains the criteria for each column that needs to be altered in target tables
            $add_column_array = array(array()); //contains the name of columns that need to be added in target tables
            /**
            * The criteria array contains all the criteria against which columns are compared for differences.
            */
            $criteria = array('Field', 'Type', 'Null', 'Collation', 'Key', 'Default', 'Comment');

            for ($i = 0; $i < sizeof($matching_tables); $i++) {
                /**
                * Finding out all the differences structure, data and index diff
                * for all the matching tables only
                */
                PMA_dataDiffInTables($src_db, $trg_db, $src_link, $trg_link,
                    $matching_tables, $matching_tables_fields, $update_array,
                    $insert_array, $delete_array, $fields_num, $i,
                    $matching_tables_keys);

                PMA_structureDiffInTables($src_db, $trg_db, $src_link, $trg_link,
                    $matching_tables, $source_columns, $target_columns,
                    $alter_str_array, $add_column_array, $uncommon_columns,
                    $criteria, $target_tables_keys, $i);

                PMA_indexesDiffInTables($src_db, $trg_db, $src_link, $trg_link,
                    $matching_tables, $source_indexes, $target_indexes,
                    $add_indexes_array, $alter_indexes_array, $remove_indexes_array, $i);
            }

            for ($j = 0; $j < sizeof($source_tables_uncommon); $j++) {
                /**
                * Finding out the number of rows to be added in tables
                * that need to be added in target database
                */
                PMA_dataDiffInUncommonTables($source_tables_uncommon, $src_db,
                    $src_link, $j, $row_count);
            }

            /**
            * Storing all arrays in session for use when page is reloaded
            * for each button press
            */
            $_SESSION['matching_tables'] = $matching_tables;
            $_SESSION['update_array'] = $update_array;
            $_SESSION['insert_array'] = $insert_array;
            $_SESSION['src_db'] = $src_db;
            $_SESSION['trg_db'] =  $trg_db;
            $_SESSION['matching_fields'] = $matching_tables_fields;
            $_SESSION['src_uncommon_tables'] = $source_tables_uncommon;
            $_SESSION['src_username'] = $src_username ;
            $_SESSION['trg_username'] = $trg_username;
            $_SESSION['src_password'] = $src_password;
            $_SESSION['trg_password'] = $trg_password;
            $_SESSION['trg_password'] = $trg_password;
            $_SESSION['src_server']   = $src_server;
            $_SESSION['trg_server']   = $trg_server;
            $_SESSION['src_type']     = $src_type;
            $_SESSION['trg_type']     = $trg_type;
            $_SESSION['matching_tables_keys'] = $matching_tables_keys;
            $_SESSION['uncommon_tables_fields'] = $uncommon_tables_fields;
            $_SESSION['uncommon_tables_row_count'] = $row_count;
            $_SESSION['target_tables_uncommon'] = $target_tables_uncommon;
            $_SESSION['uncommon_tables'] = $source_tables_uncommon;
            $_SESSION['delete_array'] = $delete_array;
            $_SESSION['uncommon_columns'] = $uncommon_columns;
            $_SESSION['source_columns'] = $source_columns;
            $_SESSION['alter_str_array'] = $alter_str_array;
            $_SESSION['target_tables_keys'] = $target_tables_keys;
            $_SESSION['add_column_array'] = $add_column_array;
            $_SESSION['criteria'] = $criteria;
            $_SESSION['target_tables'] = $trg_tables;
            $_SESSION['add_indexes_array'] = $add_indexes_array;
            $_SESSION['alter_indexes_array'] = $alter_indexes_array;
            $_SESSION['remove_indexes_array'] = $remove_indexes_array;
            $_SESSION['source_indexes'] = $source_indexes;
            $_SESSION['target_indexes'] = $target_indexes;

            /**
            * Displays the sub-heading and icons showing Structure Synchronization
            * and Data Synchronization
            */
            ?>
            <form name="synchronize_form" id="synchronize_form" method="post" action="server_synchronize.php">
                <?php echo PMA_generate_common_hidden_inputs('', ''); ?>
            <table width="40%">
            <tr>
                <td>
                    <img class="icon" src="<?php echo $pmaThemeImage; ?>new_struct.png" width="16" height="16" alt="" />
                    <?php echo __('Structure Synchronization'); ?>
                </td>
                <td>
                    <img class="icon" src="<?php echo $pmaThemeImage; ?>new_data.png" width="16" height="16" alt="" />
                    <?php echo __('Data Synchronization'); ?>
                </td>
            </tr>
            </table>
            <?php
            /**
            * Displays the tables containing the source tables names,
            * their difference with the target tables and target tables names.
            */
            PMA_syncDisplayHeaderCompare($src_db, $trg_db);
            $rows = array();

            /**
            * Display the matching tables' names and difference, first
            */
            for ($i = 0; $i < count($matching_tables); $i++) {
                /**
                * Calculating the number of updates for each matching table
                */
                if (isset($update_array[$i]) && isset($update_array[$i][0])
                        && !empty($matching_tables_keys[$i][0])
                        && isset($update_array[$i][0][$matching_tables_keys[$i][0]])) {
                    $num_of_updates = sizeof($update_array[$i]);
                } else {
                    $num_of_updates = 0;
                }
                /**
                * Calculating the number of insertions for each matching table
                */
                if (isset($insert_array[$i]) && isset($insert_array[$i][0])
                        && !empty($matching_tables_keys[$i])
                        && isset($insert_array[$i][0][$matching_tables_keys[$i][0]])) {
                    $num_of_insertions = sizeof($insert_array[$i]);
                } else {
                    $num_of_insertions = 0;
                }

                /**
                * Calculating the number of alter columns, number of columns to be
                * added, number of columns to be removed,
                * number of index to be added and removed.
                */
                $num_alter_cols  = 0;
                $num_insert_cols = 0;
                $num_remove_cols = 0;
                $num_add_index   = 0;
                $num_remove_index = 0;

                if (isset($alter_str_array[$i])) {
                    $num_alter_cols = sizeof($alter_str_array[$i]);
                }
                if (isset($add_column_array[$i])) {
                    $num_insert_cols = sizeof($add_column_array[$i]);
                }
                if (isset($uncommon_columns[$i])) {
                    $num_remove_cols = sizeof($uncommon_columns[$i]);
                }
                if (isset($add_indexes_array[$i])) {
                    $num_add_index = sizeof($add_indexes_array[$i]);
                }
                if (isset($remove_indexes_array[$i])) {
                    $num_remove_index = sizeof($remove_indexes_array[$i]);
                }
                if (isset($alter_indexes_array[$i])) {
                    $num_add_index += sizeof($alter_indexes_array[$i]);
                    $num_remove_index += sizeof($alter_indexes_array[$i]);
                }

                $btn_structure_params = null;
                $btn_data_params = null;

                /**
                * Display the red button of structure synchronization if there
                * exists any structure difference or index difference.
                */
                if (($num_alter_cols > 0)
                    || ($num_insert_cols > 0)
                    || ($num_remove_cols > 0)
                    || ($num_add_index > 0)
                    || ($num_remove_index > 0)
                ) {
                    $btn_structure_params = array($i, $num_alter_cols, $num_insert_cols,
                        $num_remove_cols, $num_add_index, $num_remove_index);
                }

                /**
                * Display the green button of data synchronization if there exists
                * any data difference.
                */
                if ((isset($update_array[$i])
                    || isset($insert_array[$i]))
                    && !empty($matching_tables_keys[$i])
                ) {
                    if (isset($update_array[$i][0][$matching_tables_keys[$i][0]])
                        || isset($insert_array[$i][0][$matching_tables_keys[$i][0]])
                    ) {
                        $btn_data_params = array($i, $num_of_updates,
                            $num_of_insertions, null, null, null);
                    }
                }

                $rows[] = array(
                    'src_table_name' => $matching_tables[$i],
                    'dst_table_name' => $matching_tables[$i],
                    'btn_type' => 'M',
                    'btn_structure' => $btn_structure_params,
                    'btn_data' => $btn_data_params
                );
            }
            /**
            * Displays the tables' names present in source but missing from target
            */
            for ($j = 0; $j < count($source_tables_uncommon); $j++) {
                $row = array(
                    'src_table_name' => '+ ' . $source_tables_uncommon[$j],
                    'dst_table_name' => $source_tables_uncommon[$j] . ' (' . __('not present') . ')',
                    'btn_type' => 'U',
                    'btn_structure' => array($j, null, null, null, null, null),
                    'btn_data' => null
                );
                if ($row_count[$j] > 0) {
                    $row['btn_data'] = array($j, null, $row_count[$j], null, null, null);
                }
                $rows[] = $row;
            }
            foreach ($target_tables_uncommon as $tbl_nc_name) {
                $rows[] = array(
                    'src_table_name' => '',
                    'dst_table_name' => $tbl_nc_name);
            }
            /**
            * Displays the target tables names
            */
            PMA_syncDisplayDataCompare($rows);
            echo '</table>
                </div>
                </fieldset>';

            /**
            * This "list" div will contain a table and each row will depict
            * information about structure/data difference in tables.
            * Rows will be generated dynamically as soon as the colored
            * buttons "D" or "S"  are clicked.
            */

            echo '<fieldset style="padding:0"><div id="list" style="overflow:auto; height:140px; padding:1em">

            <table>
                <thead>
                <tr style="width: 100%;">
                    <th id="table_name" style="width: 10%;" colspan="1">' . __('Table') . ' </th>
                    <th id="str_diff"   style="width: 65%;" colspan="6">' . __('Structure Difference') . ' </th>
                    <th id="data_diff"  style="width: 20%;" colspan="2">' . __('Data Difference') . '</th>
                </tr>
                <tr style="width: 100%;">
                    <th style="width: 10%;">' . __('Table name') . '</th>
                    <th style="width: 10%;">' . __('Create table'). '</th>
                    <th style="width: 11%;">' . __('Add column(s)') . '</th>
                    <th style="width: 13%;">' . __('Remove column(s)') . '</th>
                    <th style="width: 11%;">' . __('Alter column(s)') . '</th>
                    <th style="width: 12%;">' . __('Remove index(s)') . '</th>
                    <th style="width: 11%;">' . __('Apply index(s)') . '</th>
                    <th style="width: 10%;">'.  __('Update row(s)') . '</th>
                    <th style="width: 10%;">' . __('Insert row(s)') . '</th>
                </tr>
                </thead>
                <tbody></tbody>
            </table>
            </div></fieldset>';
            /**
            *  This fieldset displays the checkbox to confirm deletion of previous rows from target tables
            */
            echo '<fieldset>
            <p><input type= "checkbox" name="delete_rows" id ="delete_rows" /><label for="delete_rows">'
                . __('Would you like to delete all the previous rows from target tables?')
                . '</label> </p>
            </fieldset>
            <fieldset class="tblFooters">';
            echo '<input type="button" name="apply_changes" value="'
                . __('Apply Selected Changes')
                . '" onclick ="ApplySelectedChanges('
                . "'" . htmlspecialchars($_SESSION['token']) . "'" . ')" />';
            echo '<input type="submit" name="synchronize_db" value="'
                . __('Synchronize Databases') . '" />' . '</fieldset>';
            echo '</form>';
        }
    }
} // end if ((isset($_REQUEST['submit_connect'])))

 /**
 * Display the page when 'Apply Selected Changes' is pressed
 */
if (isset($_REQUEST['Table_ids'])) {
    /**
    * Displays success message
    */
    echo '<div class="success">'
        . __('Selected target tables have been synchronized with source tables.')
        . '</div>';

    $src_db = $_SESSION['src_db'];
    $trg_db = $_SESSION['trg_db'];
    $update_array = $_SESSION['update_array'];
    $insert_array = $_SESSION['insert_array'];
    $src_username = $_SESSION['src_username'];
    $trg_username = $_SESSION['trg_username'];
    $src_password = $_SESSION['src_password'];
    $trg_password = $_SESSION['trg_password'];
    $src_server   = $_SESSION['src_server'];
    $trg_server   = $_SESSION['trg_server'];
    $src_type     = $_SESSION['src_type'];
    $trg_type     = $_SESSION['trg_type'];
    $uncommon_tables = $_SESSION['uncommon_tables'];
    $matching_tables = $_SESSION['matching_tables'];
    $matching_tables_keys = $_SESSION['matching_tables_keys'];
    $matching_tables_fields = $_SESSION['matching_fields'];
    $source_tables_uncommon = $_SESSION['src_uncommon_tables'];
    $uncommon_tables_fields = $_SESSION['uncommon_tables_fields'];
    $target_tables_uncommon = $_SESSION['target_tables_uncommon'];
    $row_count = $_SESSION['uncommon_tables_row_count'];
    $target_tables = $_SESSION['target_tables'];

    $delete_array = $_SESSION['delete_array'];
    $uncommon_columns = $_SESSION['uncommon_columns'];
    $source_columns = $_SESSION['source_columns'];
    $alter_str_array = $_SESSION['alter_str_array'];
    $criteria = $_SESSION['criteria'];
    $target_tables_keys = $_SESSION['target_tables_keys'];
    $add_column_array = $_SESSION['add_column_array'];
    $add_indexes_array = $_SESSION['add_indexes_array'];
    $alter_indexes_array = $_SESSION['alter_indexes_array'];
    $remove_indexes_array = $_SESSION['remove_indexes_array'];
    $source_indexes = $_SESSION['source_indexes'];
    $target_indexes = $_SESSION['target_indexes'];
    $uncommon_cols = $uncommon_columns;

    /**
    * Creating link object for source and target databases
    */
    foreach ($cons as $con) {
        if (${"{$con}_type"} != "cur") {
            ${"{$con}_link"} = PMA_DBI_connect(${"{$con}_username"},
                ${"{$con}_password"}, $is_controluser = false, ${"{$con}_server"});
        } else {
            ${"{$con}_link"} = null;
            // working on current server, so initialize this for tracking
            // (does not work if user defined current server as a remote one)
            $GLOBALS['db'] = ${"{$con}_db"};
        }
    } // end foreach ($cons as $con)

    /**
    * Initializing arrays to save the table ids whose data and structure difference is to be applied
    */
    $matching_table_data_diff = array();  //stores id of matching table having data difference
    $matching_table_structure_diff = array(); //stores id of matching tables having structure difference
    $uncommon_table_structure_diff = array(); //stores id of uncommon tables having structure difference
    $uncommon_table_data_diff = array();     //stores id of uncommon tables having data difference

    for ($i = 0; isset($_REQUEST[$i]); $i++ ) {
        if (isset($_REQUEST[$i])) {
            $table_id = explode("US", $_REQUEST[$i]);
            if (isset($table_id[1])) {
                $uncommon_table_structure_diff[] = $table_id[1];
            }
            $table_id = explode("UD", $_REQUEST[$i]);
            if (isset($table_id[1])) {
                $uncommon_table_data_diff[] = $table_id[1];
            }
            $table_id = explode("MS", $_REQUEST[$i]);
            if (isset($table_id[1])) {
                $matching_table_structure_diff[] = $table_id[1];
            }

            $table_id = explode("MD", $_REQUEST[$i]);
            if (isset($table_id[1])) {
                 $matching_table_data_diff[] = $table_id[1];
            }
        }
    } // end for
    /**
    * Applying the structure difference on selected matching tables
    */
    for ($q = 0; $q < sizeof($matching_table_structure_diff); $q++) {
        if (isset($alter_str_array[$matching_table_structure_diff[$q]])) {
            PMA_alterTargetTableStructure($trg_db, $trg_link, $matching_tables,
                $source_columns, $alter_str_array, $matching_tables_fields,
                $criteria, $matching_tables_keys, $target_tables_keys,
                $matching_table_structure_diff[$q], false);

            unset($alter_str_array[$matching_table_structure_diff[$q]]);
        }
        if (isset($add_column_array[$matching_table_structure_diff[$q]])) {
            PMA_findDeleteRowsFromTargetTables($delete_array, $matching_tables,
                $matching_table_structure_diff[$q], $target_tables_keys,
                $matching_tables_keys, $trg_db, $trg_link, $src_db, $src_link);

            if (isset($delete_array[$matching_table_structure_diff[$q]])) {
                PMA_deleteFromTargetTable($trg_db, $trg_link, $matching_tables,
                    $matching_table_structure_diff[$q], $target_tables_keys,
                    $delete_array, false);

                unset($delete_array[$matching_table_structure_diff[$q]]);
            }
            PMA_addColumnsInTargetTable($src_db, $trg_db, $src_link, $trg_link,
                $matching_tables, $source_columns, $add_column_array,
                $matching_tables_fields, $criteria, $matching_tables_keys,
                $target_tables_keys, $uncommon_tables, $uncommon_tables_fields,
                $matching_table_structure_diff[$q], $uncommon_cols, false);

            unset($add_column_array[$matching_table_structure_diff[$q]]);
        }
        if (isset($uncommon_columns[$matching_table_structure_diff[$q]])) {
            PMA_removeColumnsFromTargetTable($trg_db, $trg_link, $matching_tables,
                $uncommon_columns, $matching_table_structure_diff[$q], false);

            unset($uncommon_columns[$matching_table_structure_diff[$q]]);
        }
        if (isset($add_indexes_array[$matching_table_structure_diff[$q]])
            || isset($remove_indexes_array[$matching_table_structure_diff[$q]])
            || isset($alter_indexes_array[$matching_table_structure_diff[$q]])
        ) {
            PMA_applyIndexesDiff ($trg_db, $trg_link, $matching_tables,
                $source_indexes, $target_indexes, $add_indexes_array,
                $alter_indexes_array, $remove_indexes_array,
                $matching_table_structure_diff[$q], false);

            unset($add_indexes_array[$matching_table_structure_diff[$q]]);
            unset($alter_indexes_array[$matching_table_structure_diff[$q]]);
            unset($remove_indexes_array[$matching_table_structure_diff[$q]]);
        }
    }
    /**
    * Applying the data difference. First checks if structure diff is applied or not.
    * If not, then apply structure difference first then apply data difference.
    */
    for ($p = 0; $p < sizeof($matching_table_data_diff); $p++) {
        if ($_REQUEST['checked'] == 'true') {
            PMA_findDeleteRowsFromTargetTables($delete_array, $matching_tables,
                $matching_table_data_diff[$p], $target_tables_keys,
                $matching_tables_keys, $trg_db, $trg_link, $src_db, $src_link);

            if (isset($delete_array[$matching_table_data_diff[$p]])) {
                PMA_deleteFromTargetTable($trg_db, $trg_link, $matching_tables,
                    $matching_table_data_diff[$p], $target_tables_keys,
                    $delete_array, false);

                unset($delete_array[$matching_table_data_diff[$p]]);
            }
        }
        if (isset($alter_str_array[$matching_table_data_diff[$p]])) {
            PMA_alterTargetTableStructure($trg_db, $trg_link, $matching_tables,
                $source_columns, $alter_str_array, $matching_tables_fields,
                $criteria, $matching_tables_keys, $target_tables_keys,
                $matching_table_data_diff[$p], false);

            unset($alter_str_array[$matching_table_data_diff[$p]]);
        }
        if (isset($add_column_array[$matching_table_data_diff[$p]])) {
            PMA_findDeleteRowsFromTargetTables($delete_array, $matching_tables,
                $matching_table_data_diff[$p], $target_tables_keys,
                $matching_tables_keys, $trg_db, $trg_link, $src_db, $src_link);

            if (isset($delete_array[$matching_table_data_diff[$p]])) {
                PMA_deleteFromTargetTable($trg_db, $trg_link, $matching_tables,
                    $matching_table_data_diff[$p], $target_tables_keys,
                    $delete_array, false);

                unset($delete_array[$matching_table_data_diff[$p]]);
            }
            PMA_addColumnsInTargetTable($src_db, $trg_db, $src_link, $trg_link,
                $matching_tables, $source_columns, $add_column_array,
                $matching_tables_fields, $criteria, $matching_tables_keys,
                $target_tables_keys, $uncommon_tables, $uncommon_tables_fields,
                $matching_table_data_diff[$p], $uncommon_cols, false);

            unset($add_column_array[$matching_table_data_diff[$p]]);
        }
        if (isset($uncommon_columns[$matching_table_data_diff[$p]])) {
            PMA_removeColumnsFromTargetTable($trg_db, $trg_link, $matching_tables,
                $uncommon_columns, $matching_table_data_diff[$p], false);

            unset($uncommon_columns[$matching_table_data_diff[$p]]);
        }
        if ((isset($matching_table_structure_diff[$q])
            && isset($add_indexes_array[$matching_table_structure_diff[$q]]))
            || (isset($matching_table_structure_diff[$q])
            && isset($remove_indexes_array[$matching_table_structure_diff[$q]]))
            || (isset($matching_table_structure_diff[$q])
            && isset($alter_indexes_array[$matching_table_structure_diff[$q]]))
        ) {
            PMA_applyIndexesDiff ($trg_db, $trg_link, $matching_tables,
                $source_indexes, $target_indexes, $add_indexes_array,
                $alter_indexes_array, $remove_indexes_array,
                $matching_table_structure_diff[$q], false);

            unset($add_indexes_array[$matching_table_structure_diff[$q]]);
            unset($alter_indexes_array[$matching_table_structure_diff[$q]]);
            unset($remove_indexes_array[$matching_table_structure_diff[$q]]);
        }
        /**
        * Applying the data difference.
        */
        PMA_updateTargetTables($matching_tables, $update_array, $src_db, $trg_db,
            $trg_link, $matching_table_data_diff[$p], $matching_tables_keys, false);

        PMA_insertIntoTargetTable($matching_tables, $src_db, $trg_db, $src_link,
            $trg_link, $matching_tables_fields, $insert_array,
            $matching_table_data_diff[$p], $matching_tables_keys, $source_columns,
            $add_column_array, $criteria, $target_tables_keys, $uncommon_tables,
            $uncommon_tables_fields, $uncommon_cols, $alter_str_array,
            $source_indexes, $target_indexes, $add_indexes_array,
            $alter_indexes_array, $delete_array, $update_array, false);
    }
    /**
    * Updating the session variables to the latest values of the arrays.
    */
    $_SESSION['delete_array'] = $delete_array;
    $_SESSION['uncommon_columns'] = $uncommon_columns;
    $_SESSION['alter_str_array']  = $alter_str_array;
    $_SESSION['add_column_array'] = $add_column_array;
    $_SESSION['add_indexes_array'] = $add_indexes_array;
    $_SESSION['remove_indexes_array'] = $remove_indexes_array;
    $_SESSION['insert_array'] = $insert_array;
    $_SESSION['update_array'] = $update_array;

    /**
    * Applying structure difference to selected non-matching tables
    * (present in Source but absent from Target).
    */
    for ($s = 0; $s < sizeof($uncommon_table_structure_diff); $s++) {
        PMA_createTargetTables($src_db, $trg_db, $src_link, $trg_link,
            $uncommon_tables, $uncommon_table_structure_diff[$s],
            $uncommon_tables_fields, false);
        $_SESSION['uncommon_tables_fields'] = $uncommon_tables_fields;

        unset($uncommon_tables[$uncommon_table_structure_diff[$s]]);
    }
    /**
    * Applying data difference to selected non-matching tables
    * (present in Source but absent from Target).
    * Before data synchronization, structure synchronization is confirmed.
    */
    for ($r = 0; $r < sizeof($uncommon_table_data_diff); $r++) {
        if (!(in_array($uncommon_table_data_diff[$r], $uncommon_table_structure_diff))) {
            if (isset($uncommon_tables[$uncommon_table_data_diff[$r]])) {
                PMA_createTargetTables($src_db, $trg_db, $src_link, $trg_link,
                    $uncommon_tables, $uncommon_table_data_diff[$r],
                    $uncommon_tables_fields, false);
                $_SESSION['uncommon_tables_fields'] = $uncommon_tables_fields;

                unset($uncommon_tables[$uncommon_table_data_diff[$r]]);
            }
        }
        PMA_populateTargetTables($src_db, $trg_db, $src_link, $trg_link,
            $source_tables_uncommon, $uncommon_table_data_diff[$r],
            $_SESSION['uncommon_tables_fields'], false);

        unset($row_count[$uncommon_table_data_diff[$r]]);
    }
    /**
    * Again all the tables from source and target database are displayed with their differences.
    * The differences have been removed from tables that have been synchronized
    */
    echo '<form name="applied_difference" id="synchronize_form" method="post" action="server_synchronize.php">'
        . PMA_generate_common_hidden_inputs('', '');

    PMA_syncDisplayHeaderCompare($src_db, $trg_db);
    $rows = array();
    for ($i = 0; $i < count($matching_tables); $i++) {
        $num_alter_cols  = 0;
        $num_insert_cols = 0;
        $num_remove_cols = 0;
        $num_add_index = 0;
        $num_remove_index = 0;

        if (isset($alter_str_array[$i])) {
            $num_alter_cols = sizeof($alter_str_array[$i]);
        }
        if (isset($add_column_array[$i])) {
            $num_insert_cols = sizeof($add_column_array[$i]);
        }
        if (isset($uncommon_columns[$i])) {
            $num_remove_cols = sizeof($uncommon_columns[$i]);
        }
        if (isset($add_indexes_array[$i])) {
            $num_add_index = sizeof($add_indexes_array[$i]);
        }
        if (isset($remove_indexes_array[$i])) {
            $num_remove_index = sizeof($remove_indexes_array[$i]);
        }

        $btn_structure_params = null;
        $btn_data_params = null;

        if (($num_alter_cols > 0)
            || ($num_insert_cols > 0)
            || ($num_remove_cols > 0)
            || ($num_add_index > 0)
            || ($num_remove_index > 0)
        ) {
            $btn_structure_params = array($i, $num_alter_cols, $num_insert_cols,
                $num_remove_cols, $num_add_index, $num_remove_index);
        }
        if (!(in_array($i, $matching_table_data_diff))) {
            if (isset($matching_tables_keys[$i][0])
                && isset($update_array[$i][0][$matching_tables_keys[$i][0]])
            ) {
                if (isset($update_array[$i])) {
                    $num_of_updates = sizeof($update_array[$i]);
                } else {
                    $num_of_updates = 0;
                }
            } else {
                $num_of_updates = 0;
            }
            if (isset($matching_tables_keys[$i][0])
                && isset($insert_array[$i][0][$matching_tables_keys[$i][0]])
            ) {
                if (isset($insert_array[$i])) {
                    $num_of_insertions = sizeof($insert_array[$i]);
                } else {
                    $num_of_insertions = 0;
                }
            } else {
                $num_of_insertions = 0;
            }

            if ((isset($matching_tables_keys[$i][0])
                && isset($update_array[$i][0][$matching_tables_keys[$i][0]]))
                || (isset($matching_tables_keys[$i][0])
                && isset($insert_array[$i][0][$matching_tables_keys[$i][0]]))
            ) {
                $btn_data_params = array($i, $num_of_updates, $num_of_insertions,
                    null, null, null);
            }
        } else {
            unset($update_array[$i]);
            unset($insert_array[$i]);
        }
        $rows[] = array(
            'src_table_name' => $matching_tables[$i],
            'dst_table_name' => $matching_tables[$i],
            'btn_type' => 'M',
            'btn_structure' => $btn_structure_params,
            'btn_data' => $btn_data_params
        );
    }
    /**
    * placing updated value of arrays in session
    *
    */
    $_SESSION['update_array'] = $update_array;
    $_SESSION['insert_array'] = $insert_array;

    for ($j = 0; $j < count($source_tables_uncommon); $j++) {
        $btn_structure_params = null;
        $btn_data_params = null;

        /**
        * Display the difference only when it has not been applied
        */
        if (!(in_array($j, $uncommon_table_structure_diff))) {
            if (isset($uncommon_tables[$j])) {
                $btn_structure_params = array($j, null, null, null, null, null);
            }
            $dst_table_name = $source_tables_uncommon[$j] . ' (' .  __('not present') . ')';
        } else {
            unset($uncommon_tables[$j]);
            $dst_table_name = $source_tables_uncommon[$j];
        }
        /**
        * Display the difference only when it has not been applied
        */
        if (!(in_array($j, $uncommon_table_data_diff))) {
            if (isset($row_count[$j]) && ($row_count[$j] > 0)) {
                $btn_data_params = array($j, null, $row_count[$j], null, null, null);
            }
        } else {
            unset($row_count[$j]);
        }

        $rows[] = array(
            'src_table_name' => $source_tables_uncommon[$j],
            'dst_table_name' => $dst_table_name,
            'btn_type' => 'U',
            'btn_structure' => $btn_structure_params,
            'btn_data' => $btn_data_params
        );
    }
    /**
    * placing the latest values of arrays in session
    */

    $_SESSION['uncommon_tables'] = $uncommon_tables;
    $_SESSION['uncommon_tables_row_count'] = $row_count;


    /**
    * Displaying the target database tables
    */
    foreach ($target_tables_uncommon as $tbl_nc_name) {
        $rows[] = array(
            'src_table_name' => '',
            'dst_table_name' => $tbl_nc_name);
    }
    PMA_syncDisplayDataCompare($rows);
    echo '</table>
        </div>
        </fieldset>';

    /**
    * This "list" div will contain a table and each row will depict information about
    * structure/data difference in tables.
    * Rows will be generated dynamically as soon as the colored buttons "D" or "S"
    * are clicked.
    */

    echo '<fieldset style="padding:0"><div id="list" style = "overflow:auto; height:140px; padding:1em">';
    echo '<table>
          <thead>
            <tr style="width: 100%;">
                <th id="table_name" style="width: 10%;" colspan="1">' . __('Table') . ' </th>
                <th id="str_diff"   style="width: 65%;" colspan="6">' . __('Structure Difference') . ' </th>
                <th id="data_diff"  style="width: 20%;" colspan="2">' . __('Data Difference') . '</th>
            </tr>
            <tr style="width: 100%;">
                <th style="width: 10%;">' . __('Table name') . '</th>
                <th style="width: 10%;">' . __('Create table'). '</th>
                <th style="width: 11%;">' . __('Add column(s)') . '</th>
                <th style="width: 13%;">' . __('Remove column(s)') . '</th>
                <th style="width: 11%;">' . __('Alter column(s)') . '</th>
                <th style="width: 12%;">' . __('Remove index(s)') . '</th>
                <th style="width: 11%;">' . __('Apply index(s)') . '</th>
                <th style="width: 10%;">' . __('Update row(s)') . '</th>
                <th style="width: 10%;">' . __('Insert row(s)') . '</th>
            </tr>
            </thead>
            <tbody></tbody>
         </table>
        </div></fieldset>';

    /**
    *  This fieldset displays the checkbox to confirm deletion of previous rows from target tables
    */
    echo '<fieldset>
        <p><input type="checkbox" name="delete_rows" id ="delete_rows" /><label for="delete_rows">'
        . __('Would you like to delete all the previous rows from target tables?') . '</label> </p>
        </fieldset>';

    echo '<fieldset class="tblFooters">';
    echo '<input type="button" name="apply_changes" value="'
        . __('Apply Selected Changes') . '" onclick ="ApplySelectedChanges('
        . "'" . htmlspecialchars($_SESSION['token']) . "'" .')" />';
    echo '<input type="submit" name="synchronize_db" value="'
        . __('Synchronize Databases') . '" />'
        . '</fieldset>';
    echo '</form>';
}

/**
* Displays the page when 'Synchronize Databases' is pressed.
*/

if (isset($_REQUEST['synchronize_db'])) {

    $src_db = $_SESSION['src_db'];
    $trg_db = $_SESSION['trg_db'];
    $update_array = $_SESSION['update_array'];
    $insert_array = $_SESSION['insert_array'];
    $src_username = $_SESSION['src_username'];
    $trg_username = $_SESSION['trg_username'];
    $src_password = $_SESSION['src_password'];
    $trg_password = $_SESSION['trg_password'];
    $matching_tables = $_SESSION['matching_tables'];
    $matching_tables_keys = $_SESSION['matching_tables_keys'];
    $matching_tables_fields = $_SESSION['matching_fields'];
    $source_tables_uncommon = $_SESSION['src_uncommon_tables'];
    $uncommon_tables_fields = $_SESSION['uncommon_tables_fields'];
    $target_tables_uncommon = $_SESSION['target_tables_uncommon'];
    $row_count = $_SESSION['uncommon_tables_row_count'];
    $uncommon_tables = $_SESSION['uncommon_tables'];
    $target_tables = $_SESSION['target_tables'];

    $delete_array = $_SESSION['delete_array'];
    $uncommon_columns = $_SESSION['uncommon_columns'];
    $source_columns = $_SESSION['source_columns'];
    $alter_str_array = $_SESSION['alter_str_array'];
    $criteria = $_SESSION['criteria'];
    $target_tables_keys = $_SESSION['target_tables_keys'];
    $add_column_array = $_SESSION['add_column_array'];
    $add_indexes_array = $_SESSION['add_indexes_array'];
    $alter_indexes_array = $_SESSION['alter_indexes_array'];
    $remove_indexes_array = $_SESSION['remove_indexes_array'];
    $source_indexes = $_SESSION['source_indexes'];
    $target_indexes = $_SESSION['target_indexes'];
    $uncommon_cols = $uncommon_columns;

   /**
   * Display success message.
   */
    echo '<div class="success">'
        . __('Target database has been synchronized with source database')
        . '</div>';
    /**
    * Displaying all the tables of source and target database
    * and now no difference is there.
    */
    PMA_syncDisplayHeaderCompare($src_db, $trg_db);
    $rows = array();
    for ($i = 0; $i < count($matching_tables); $i++) {
        $rows[] = array(
            'src_table_name' => $matching_tables[$i],
            'dst_table_name' => $matching_tables[$i]);
    }
    foreach ($source_tables_uncommon as $tbl_nc_name) {
        $rows[] = array(
            'src_table_name' => '+ ' . $tbl_nc_name,
            'dst_table_name' => $tbl_nc_name);
    }
    foreach ($target_tables_uncommon as $tbl_nc_name) {
        $rows[] = array(
            'src_table_name' => '',
            'dst_table_name' => $tbl_nc_name);
    }
    PMA_syncDisplayDataCompare($rows);
    echo '</table>
        </div>
        </fieldset>';

    /**
    * connecting the source and target servers
    */
    if ('cur' != $_SESSION['src_type']) {
        $src_link = PMA_DBI_connect($src_username, $src_password, $is_controluser = false, $_SESSION['src_server']);
        $src_version = PMA_DBI_fetch_value('SELECT VERSION()', 0, 0, $src_link);
        $src_is_drizzle = (bool)preg_match('/\d{4}\./', $src_version);
    } else {
        $src_link = $GLOBALS['userlink'];
        $src_version = PMA_MYSQL_STR_VERSION;
        $src_is_drizzle = PMA_DRIZZLE;
        // working on current server, so initialize this for tracking
        // (does not work if user defined current server as a remote one)
        $GLOBALS['db'] = $_SESSION['src_db'];
    }
    if ('cur' != $_SESSION['trg_type']) {
        $trg_link = PMA_DBI_connect($trg_username, $trg_password, $is_controluser = false, $_SESSION['trg_server']);
        $trg_version = PMA_DBI_fetch_value('SELECT VERSION()', 0, 0, $trg_link);
        $trg_is_drizzle = (bool)preg_match('/\d{4}\./', $trg_version);
    } else {
        $trg_link = $GLOBALS['userlink'];
        $trg_version = PMA_MYSQL_STR_VERSION;
        $trg_is_drizzle = PMA_DRIZZLE;
        // working on current server, so initialize this for tracking
        $GLOBALS['db'] = $_SESSION['trg_db'];
    }

    /**
    * Displaying the queries.
    */
    echo '<fieldset><legend>' . __('Executed queries') . '</legend>';
    /**
    * Applying all sorts of differences for each matching table
    */
    for ($p = 0; $p < sizeof($matching_tables); $p++) {
        /**
        *  If the check box is checked for deleting previous rows from the target database tables then
        *  first find out rows to be deleted and then delete the rows.
        */
        if (isset($_REQUEST['delete_rows'])) {
            PMA_findDeleteRowsFromTargetTables($delete_array, $matching_tables, $p,
                $target_tables_keys, $matching_tables_keys,
                $trg_db, $trg_link, $src_db, $src_link);

            if (isset($delete_array[$p])) {
                PMA_deleteFromTargetTable($trg_db, $trg_link, $matching_tables, $p,
                    $target_tables_keys, $delete_array, true);
                unset($delete_array[$p]);
            }
        }
        if (isset($alter_str_array[$p])) {
            PMA_alterTargetTableStructure($trg_db, $trg_link, $matching_tables,
                $source_columns, $alter_str_array, $matching_tables_fields,
                $criteria, $matching_tables_keys, $target_tables_keys, $p, true);
            unset($alter_str_array[$p]);
        }
        if (! empty($add_column_array[$p])) {
            PMA_findDeleteRowsFromTargetTables($delete_array, $matching_tables, $p,
                $target_tables_keys, $matching_tables_keys,
                $trg_db, $trg_link, $src_db, $src_link);

            if (isset($delete_array[$p])) {
                PMA_deleteFromTargetTable($trg_db, $trg_link, $matching_tables, $p,
                    $target_tables_keys, $delete_array, true);
                unset($delete_array[$p]);
            }
            PMA_addColumnsInTargetTable($src_db, $trg_db, $src_link, $trg_link,
                $matching_tables, $source_columns, $add_column_array,
                $matching_tables_fields, $criteria, $matching_tables_keys,
                $target_tables_keys, $uncommon_tables, $uncommon_tables_fields,
                $p, $uncommon_cols, true);
            unset($add_column_array[$p]);
        }
        if (isset($uncommon_columns[$p])) {
            PMA_removeColumnsFromTargetTable($trg_db, $trg_link, $matching_tables,
                $uncommon_columns, $p, true);
            unset($uncommon_columns[$p]);
        }
        if (isset($matching_table_structure_diff)
            && (isset($add_indexes_array[$matching_table_structure_diff[$p]])
            || isset($remove_indexes_array[$matching_table_structure_diff[$p]])
            || isset($alter_indexes_array[$matching_table_structure_diff[$p]]))
        ) {
            PMA_applyIndexesDiff ($trg_db, $trg_link, $matching_tables,
                $source_indexes, $target_indexes, $add_indexes_array,
                $alter_indexes_array, $remove_indexes_array,
                $matching_table_structure_diff[$p], true);

            unset($add_indexes_array[$matching_table_structure_diff[$p]]);
            unset($alter_indexes_array[$matching_table_structure_diff[$p]]);
            unset($remove_indexes_array[$matching_table_structure_diff[$p]]);
        }

        PMA_updateTargetTables($matching_tables, $update_array, $src_db, $trg_db,
            $trg_link, $p, $matching_tables_keys, true);

        PMA_insertIntoTargetTable(
            $matching_tables, $src_db, $trg_db, $src_link,
            $trg_link, $matching_tables_fields, $insert_array, $p,
            $matching_tables_keys, $matching_tables_keys, $source_columns,
            $add_column_array, $criteria, $target_tables_keys, $uncommon_tables,
            $uncommon_tables_fields, $uncommon_cols, $alter_str_array, $source_indexes,
            $target_indexes, $add_indexes_array,
            $alter_indexes_array, $delete_array, $update_array, true
        );
    }

    /**
    *  Creating and populating tables present in source but absent
    *  from target database.
    */
    for ($q = 0; $q < sizeof($source_tables_uncommon); $q++) {
        if (isset($uncommon_tables[$q])) {
            PMA_createTargetTables($src_db, $trg_db, $src_link, $trg_link,
                $source_tables_uncommon, $q, $uncommon_tables_fields, true);
        }
        if (isset($row_count[$q])) {
            PMA_populateTargetTables($src_db, $trg_db, $src_link, $trg_link,
                $source_tables_uncommon, $q, $uncommon_tables_fields, true);
        }
    }
    echo "</fieldset>";
}

/**
 * Displays the main page when none of the following buttons is pressed
 */

if (! isset($_REQUEST['submit_connect'])
    && ! isset($_REQUEST['synchronize_db'])
    && ! isset($_REQUEST['Table_ids'])
) {
/**
* Displays the sub-page heading
*/
    echo '<h2>' . ($GLOBALS['cfg']['MainPageIconic']
    ? PMA_getImage('s_sync.png')
    : '')
    . __('Synchronize')
    .'</h2>';

    echo  '<div id="serverstatus">
    <form name="connection_form" id="connection_form" method="post" action="server_synchronize.php"
   >' // TODO: add check if all var. are filled in
    . PMA_generate_common_hidden_inputs('', '');
    echo '<fieldset>';
    echo '<legend>' . __('Synchronize') . '</legend>';
    /**
     * Displays the forms
     */

    $databases = PMA_DBI_get_databases_full(null, false, null, 'SCHEMA_NAME',
        'ASC', 0, true);

    $databases_to_hide = array(
        'information_schema',
        'mysql'
    );
    if (PMA_DRIZZLE) {
        $databases_to_hide[] = 'data_dictionary';
    }

    if ($GLOBALS['cfg']['AllowArbitraryServer'] === false) {
        $possibly_readonly = ' readonly="readonly"';
    } else {
        $possibly_readonly = '';
    }

    foreach ($cons as $type) {
        if ('src' == $type) {
            $database_header = __('Source database');
        } else {
            $database_header = __('Target database');
        }

        $database_header .= PMA_showHint(PMA_sanitize(sprintf('%sAllowArbitraryServer%s',
            '[a@./Documentation.html#AllowArbitraryServer@_blank]', '[/a]')));
?>
      <table id="serverconnection_<?php echo $type; ?>_remote" class="data noclick">
      <caption class="tblHeaders"><?php echo $database_header; ?></caption>
      <tr class="odd">
      <td colspan="2" style="text-align: center">
         <select name="<?php echo $type; ?>_type" id="<?php echo $type; ?>_type" class="server_selector">
<?php
        if ($GLOBALS['cfg']['AllowArbitraryServer']) {
            $preselected_option = 'rmt';
            echo '<option value="rmt" selected="selected">' . __('Enter manually') . '</option>';
        } else {
            $preselected_option = 'cur';
        }
        echo '<option value="cur"';
        if ('cur' == $preselected_option) {
            echo ' selected="selected"';
        }
        echo '>' .  __('Current connection') . '</option>';

        $loaded_dbi = $GLOBALS['cfg']['Server']['extension'];
        foreach ($GLOBALS['cfg']['Servers'] as $key => $tmp_server) {
            if (empty($tmp_server['host']) && empty($tmp_server['socket'])) {
                continue;
            }

            if (!empty($tmp_server['verbose'])) {
                $label = $tmp_server['verbose'];
            } else {
                $label = $tmp_server['host'];
                if (!empty($tmp_server['port'])) {
                    $label .= ':' . $tmp_server['port'];
                }
            }

            if ($loaded_dbi == 'drizzle' && $tmp_server['extension'] != 'drizzle'
                    || $loaded_dbi != 'drizzle' && $tmp_server['extension'] == 'drizzle') {
                // incompatible connection protocols
                $disabled = ' disabled="disabled"';
                $value = '';
            } else {
                $disabled = '';
                $value = $tmp_server['host'];
                $value .= '||||';
                if (empty($tmp_server['port']) && empty($tmp_server['socket'])) {
                    $value .= '3306';
                } else {
                    $value .= $tmp_server['port'];
                }
                $value .= '||||';
                $value .= $tmp_server['socket'];
                $value .= '||||';
                $value .= $tmp_server['user'];
                $value .= '||||';
                $value .= $tmp_server['only_db'];
            }

            echo '<option value="' . $value . '"' . $disabled . '>'
                . sprintf(__('Configuration: %s'), htmlspecialchars($label)) . '</option>';
        } // end foreach
?>
         </select>
      </td>
      </tr>
    <tr class="even toggler remote-server">
        <td><?php echo __('Server'); ?></td>
        <td><input type="text" name="<?php echo $type; ?>_host" class="server-host" <?php echo $possibly_readonly; ?>/></td>
    </tr>
    <tr class="odd toggler remote-server">
        <td><?php echo __('Port'); ?></td>
        <td><input type="text" name="<?php echo $type; ?>_port" class="server-port" <?php echo $possibly_readonly; ?> value="3306" maxlength="5" size="5" /></td>
    </tr>
    <tr class="even toggler remote-server">
        <td><?php echo __('Socket'); ?></td>
        <td><input type="text" name="<?php echo $type; ?>_socket" class="server-socket" <?php echo $possibly_readonly; ?>/></td>
    </tr>
    <tr class="odd toggler remote-server">
        <td><?php echo __('User name'); ?></td>
        <td><input type="text" name="<?php echo $type; ?>_username" class="server-user" /></td>
    </tr>
    <tr class="even toggler remote-server">
        <td><?php echo __('Password'); ?></td>
        <td><input type="password" name="<?php echo $type; ?>_pass" class="server-pass" /> </td>
    </tr>
    <tr class="odd toggler remote-server">
        <td><?php echo __('Database'); ?></td>
        <td><input type="text" name="<?php echo $type; ?>_db" class="server-db" /></td>
    </tr>
    <tr class="even toggler current-server" style="display: none;">
        <td><?php echo __('Database'); ?></td>
        <td>
<?php
    $options_list = '';
    foreach ($databases as $array_key => $db) {
        if (in_array($db['SCHEMA_NAME'], $databases_to_hide)) {
            unset($databases[$array_key]);
        } else {
            $options_list .= '<option>' . htmlspecialchars($db['SCHEMA_NAME']) . '</option>';
        }
    }

    if (count($databases) == 0) {
        echo __('No databases');
    } else {
        echo '<select name="' . $type . '_db_sel">'
         . $options_list
         . '</select>';
        unset($options_list);
    }
    echo '</td> </tr>
      </table>';
   }
   unset ($types, $type);

    echo '
    </fieldset>
    <fieldset class="tblFooters">
        <input type="submit" name="submit_connect" value="' . __('Go') .'" id="buttonGo" />
    </fieldset>
    </form>
    </div>
    <div class="notice">' . __('Target database will be completely synchronized with source database. Source database will remain unchanged.') . '</div>';
}

 /**
 * Displays the footer
 */
require './libraries/footer.inc.php';
?>