-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdirection_portable.php
1259 lines (1197 loc) · 39.8 KB
/
direction_portable.php
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
<html>
<head>
<meta charset="UTF-8">
<!-- <meta http-equiv="refresh" content="1" /> -->
<script type="text/javascript">
function couleurservice(){
<?php
require 'connection.php';
$sql = "SELECT sponsor, Service, TimeOut_Joueur1, TimeOut_Joueur2 FROM info_scoreboard;";
$resultset = $connexion->prepare($sql);
$resultset->execute();
$row = $resultset->fetch(PDO::FETCH_ASSOC);
$sql = "SELECT Match1, Match2, Match3, Match4, Match5, Match6, Match7, Match8, Match9, Match10, Match11, Match12, Match13, Match14 FROM info_match;";
$resultset = $connexion->prepare($sql);
$resultset->execute();
$row2 = $resultset->fetch(PDO::FETCH_ASSOC);
$sql = "SELECT AfficherScore, J1M1, J2M1, J1M2, J2M2, J1M3, J2M3, J1M4, J2M4, J1M5, J2M5, J1M6, J2M6, J1M7, J2M7, J1M8, J2M8, J1M9, J2M9, J1M10, J2M10, J1M11, J2M11, J1M12, J2M12, J1M13, J2M13, J1M14, J2M14 FROM score_rencontre;";
$resultset = $connexion->prepare($sql);
$resultset->execute();
$row3 = $resultset->fetch(PDO::FETCH_ASSOC);
$connexion=null;
?>
var service=<?=$row['Service'];?>;
var TimeOut_Joueur1=<?=$row['TimeOut_Joueur1'];?>;
var TimeOut_Joueur2=<?=$row['TimeOut_Joueur2'];?>;
var sponsor=<?=$row['sponsor'];?>;
var afficher_score=<?=$row3['AfficherScore'];?>;
var m1=<?=$row2['Match1'];?>;
var m2=<?=$row2['Match2'];?>;
var m3=<?=$row2['Match3'];?>;
var m4=<?=$row2['Match4'];?>;
var m5=<?=$row2['Match5'];?>;
var m6=<?=$row2['Match6'];?>;
var m7=<?=$row2['Match7'];?>;
var m8=<?=$row2['Match8'];?>;
var m9=<?=$row2['Match9'];?>;
var m10=<?=$row2['Match10'];?>;
var m11=<?=$row2['Match11'];?>;
var m12=<?=$row2['Match12'];?>;
var m13=<?=$row2['Match13'];?>;
var m14=<?=$row2['Match14'];?>;
var J1M1=<?=$row3['J1M1'];?>;
var J1M2=<?=$row3['J1M2'];?>;
var J1M3=<?=$row3['J1M3'];?>;
var J1M4=<?=$row3['J1M4'];?>;
var J1M5=<?=$row3['J1M5'];?>;
var J1M6=<?=$row3['J1M6'];?>;
var J1M7=<?=$row3['J1M7'];?>;
var J1M8=<?=$row3['J1M8'];?>;
var J1M9=<?=$row3['J1M9'];?>;
var J1M10=<?=$row3['J1M10'];?>;
var J1M11=<?=$row3['J1M11'];?>;
var J1M12=<?=$row3['J1M12'];?>;
var J1M13=<?=$row3['J1M13'];?>;
var J1M14=<?=$row3['J1M14'];?>;
var J2M1=<?=$row3['J2M1'];?>;
var J2M2=<?=$row3['J2M2'];?>;
var J2M3=<?=$row3['J2M3'];?>;
var J2M4=<?=$row3['J2M4'];?>;
var J2M5=<?=$row3['J2M5'];?>;
var J2M6=<?=$row3['J2M6'];?>;
var J2M7=<?=$row3['J2M7'];?>;
var J2M8=<?=$row3['J2M8'];?>;
var J2M9=<?=$row3['J2M9'];?>;
var J2M10=<?=$row3['J2M10'];?>;
var J2M11=<?=$row3['J2M11'];?>;
var J2M12=<?=$row3['J2M12'];?>;
var J2M13=<?=$row3['J2M13'];?>;
var J2M14=<?=$row3['J2M14'];?>;
if(m1==0)
document.getElementById("Match1").style.backgroundColor = "#3187c4";
else if(m1==1) {
document.getElementById("Match1").style.backgroundColor = "#4c9743";
document.getElementById("setJoueur1").innerHTML = J1M1
document.getElementById("setJoueur2").innerHTML = J2M1
}
else
document.getElementById("Match1").style.backgroundColor = "#ff0000";
if(m2==0)
document.getElementById("Match2").style.backgroundColor = "#3187c4";
else if(m2==1) {
document.getElementById("Match2").style.backgroundColor = "#4c9743";
document.getElementById("setJoueur1").innerHTML = J1M2
document.getElementById("setJoueur2").innerHTML = J2M2
}
else
document.getElementById("Match2").style.backgroundColor = "#ff0000";
if(m3==0)
document.getElementById("Match3").style.backgroundColor = "#3187c4";
else if(m3==1){
document.getElementById("Match3").style.backgroundColor = "#4c9743";
document.getElementById("setJoueur1").innerHTML = J1M3
document.getElementById("setJoueur2").innerHTML = J2M3
}
else
document.getElementById("Match3").style.backgroundColor = "#ff0000";
if(m4==0)
document.getElementById("Match4").style.backgroundColor = "#3187c4";
else if(m4==1){
document.getElementById("Match4").style.backgroundColor = "#4c9743";
document.getElementById("setJoueur1").innerHTML = J1M4
document.getElementById("setJoueur2").innerHTML = J2M4
}
else
document.getElementById("Match4").style.backgroundColor = "#ff0000";
if(m5==0)
document.getElementById("Match5").style.backgroundColor = "#3187c4";
else if(m5==1){
document.getElementById("Match5").style.backgroundColor = "#4c9743";
document.getElementById("setJoueur1").innerHTML = J1M5
document.getElementById("setJoueur2").innerHTML = J2M5
}
else
document.getElementById("Match5").style.backgroundColor = "#ff0000";
if(m6==0)
document.getElementById("Match6").style.backgroundColor = "#3187c4";
else if(m6==1){
document.getElementById("Match6").style.backgroundColor = "#4c9743";
document.getElementById("setJoueur1").innerHTML = J1M6
document.getElementById("setJoueur2").innerHTML = J2M6
}
else
document.getElementById("Match6").style.backgroundColor = "#ff0000";
if(m7==0)
document.getElementById("Match7").style.backgroundColor = "#3187c4";
else if(m7==1){
document.getElementById("Match7").style.backgroundColor = "#4c9743";
document.getElementById("setJoueur1").innerHTML = J1M7
document.getElementById("setJoueur2").innerHTML = J2M7
}
else
document.getElementById("Match7").style.backgroundColor = "#ff0000";
if(m8==0)
document.getElementById("Match8").style.backgroundColor = "#3187c4";
else if(m8==1){
document.getElementById("Match8").style.backgroundColor = "#4c9743";
document.getElementById("setJoueur1").innerHTML = J1M8
document.getElementById("setJoueur2").innerHTML = J2M8
}
else
document.getElementById("Match8").style.backgroundColor = "#ff0000";
if(m9==0)
document.getElementById("Match9").style.backgroundColor = "#3187c4";
else if(m9==1){
document.getElementById("Match9").style.backgroundColor = "#4c9743";
document.getElementById("setJoueur1").innerHTML = J1M9
document.getElementById("setJoueur2").innerHTML = J2M9
}
else
document.getElementById("Match9").style.backgroundColor = "#ff0000";
if(m10==0)
document.getElementById("Match10").style.backgroundColor = "#3187c4";
else if(m10==1){
document.getElementById("Match10").style.backgroundColor = "#4c9743";
document.getElementById("setJoueur1").innerHTML = J1M10
document.getElementById("setJoueur2").innerHTML = J2M10
}
else
document.getElementById("Match10").style.backgroundColor = "#ff0000";
if(m11==0)
document.getElementById("Match11").style.backgroundColor = "#3187c4";
else if(m11==1){
document.getElementById("Match11").style.backgroundColor = "#4c9743";
document.getElementById("setJoueur1").innerHTML = J1M11
document.getElementById("setJoueur2").innerHTML = J2M11
}
else
document.getElementById("Match11").style.backgroundColor = "#ff0000";
if(m12==0)
document.getElementById("Match12").style.backgroundColor = "#3187c4";
else if(m12==1){
document.getElementById("Match12").style.backgroundColor = "#4c9743";
document.getElementById("setJoueur1").innerHTML = J1M12
document.getElementById("setJoueur2").innerHTML = J2M12
}
else
document.getElementById("Match12").style.backgroundColor = "#ff0000";
if(m13==0)
document.getElementById("Match13").style.backgroundColor = "#3187c4";
else if(m13==1){
document.getElementById("Match13").style.backgroundColor = "#4c9743";
document.getElementById("setJoueur1").innerHTML = J1M13
document.getElementById("setJoueur2").innerHTML = J2M13
}
else
document.getElementById("Match13").style.backgroundColor = "#ff0000";
if(m14==0)
document.getElementById("Match14").style.backgroundColor = "#3187c4";
else if(m14==1){
document.getElementById("Match14").style.backgroundColor = "#4c9743";
document.getElementById("setJoueur1").innerHTML = J1M14
document.getElementById("setJoueur2").innerHTML = J2M14
}
else
document.getElementById("Match14").style.backgroundColor = "#ff0000";
if(TimeOut_Joueur1==1)
document.getElementById("gestion_timeout1").style.backgroundColor = "#ff0000";
else if(TimeOut_Joueur1==2)
document.getElementById("gestion_timeout1").style.backgroundColor = "#4c9743";
if(TimeOut_Joueur2==1)
document.getElementById("gestion_timeout2").style.backgroundColor = "#ff0000";
else if(TimeOut_Joueur2==2)
document.getElementById("gestion_timeout2").style.backgroundColor = "#4c9743";
if(sponsor)
document.getElementById("sponsor").style.backgroundColor = "#4c9743";
else
document.getElementById("sponsor").style.backgroundColor = "#3187c4";
if(afficher_score)
document.getElementById("score_rencontre").style.backgroundColor = "#4c9743";
else
document.getElementById("score_rencontre").style.backgroundColor = "#3187c4";
if(!service){
document.getElementById("commencer_servir1").style.backgroundColor = "#4c9743";
document.getElementById("commencer_servir2").style.backgroundColor = "#3187c4";
for(var set=1; set<=5; set++){
if(document.getElementById("pointJ1S"+set).style.display=="block"){
var serveur=((document.getElementById("pointJ1S"+set).innerHTML*1+document.getElementById("pointJ2S"+set).innerHTML*1)%4);
if(((serveur<=1)&&(set%2))||((serveur>1)&&(!(set%2)))){
document.getElementById("barreservice1").style.backgroundColor = "#ebf151";
document.getElementById("barreservice2").style.backgroundColor = "#00599c";
}
else{
document.getElementById("barreservice1").style.backgroundColor = "#00599c";
document.getElementById("barreservice2").style.backgroundColor = "#ebf151";
}
}
}
}
else{
document.getElementById("commencer_servir2").style.backgroundColor = "#4c9743";
document.getElementById("commencer_servir1").style.backgroundColor = "#3187c4";
for(var set=1; set<=5; set++){
if(document.getElementById("pointJ1S"+set).style.display=="block"){
var serveur=((document.getElementById("pointJ1S"+set).innerHTML*1+document.getElementById("pointJ2S"+set).innerHTML*1)%4);
if(((serveur<=1)&&(set%2))||((serveur>1)&&(!(set%2)))){
document.getElementById("barreservice1").style.backgroundColor = "#00599c";
document.getElementById("barreservice2").style.backgroundColor = "#ebf151";
}
else{
document.getElementById("barreservice1").style.backgroundColor = "#ebf151";
document.getElementById("barreservice2").style.backgroundColor = "#00599c";
}
}
}
}
}
function coulset1(){
var set_vert=1;
for(var set=1; set<=4; set++){
if(((document.getElementById("pointJ1S"+set).innerHTML*1>=11)|| (document.getElementById("pointJ2S"+set).innerHTML*1>=11))&&((document.getElementById("pointJ2S"+set).innerHTML*1>=(document.getElementById("pointJ1S"+set).innerHTML*1+2*1)) || (document.getElementById("pointJ1S"+set).innerHTML*1>=(document.getElementById("pointJ2S"+set).innerHTML*1+2*1)))) {
set_vert=set+1;
}
}
document.getElementById("gestionset"+set_vert).style.backgroundColor = "#4c9743";
document.getElementById("gestionset"+set_vert).style.color = "#ffffff";
}
function nomj1(val){
document.getElementById("nomJ1").innerHTML = val;
document.getElementById("commencer_servir1").innerHTML = val;
}
function nomj2(val){
document.getElementById("nomJ2").innerHTML = val;
document.getElementById("commencer_servir2").innerHTML = val;
}
function servir1(val){
window.location.replace("servirJ1.php");
}
function servir2(val){
window.location.replace("servirJ2.php");
}
function timeout(val){
if(document.getElementById("gestion_timeout1")==val){
if(document.getElementById("gestion_timeout1").style.backgroundColor == "rgb(255, 0, 0)"){
val.style.backgroundColor = "#ff0000";
window.location.replace("tm1_stop.php");
}
else{
val.style.backgroundColor = "#4c9743";
window.location.replace("tm1_go.php");
}
}
else{
if(document.getElementById("gestion_timeout2").style.backgroundColor == "rgb(255, 0, 0)"){
val.style.backgroundColor = "#4c9743";
window.location.replace("tm2_stop.php");
}
else{
val.style.backgroundColor = "#ff0000";
window.location.replace("tm2_go.php");
}
}
}
function setJoueur1(){
if(document.getElementById("Match1").style.backgroundColor == "rgb(76, 151, 67)") {
window.location.replace("J1M1.php");
} else if(document.getElementById("Match2").style.backgroundColor == "rgb(76, 151, 67)") {
window.location.replace("J1M2.php");
} else if(document.getElementById("Match3").style.backgroundColor == "rgb(76, 151, 67)") {
window.location.replace("J1M3.php");
} else if(document.getElementById("Match4").style.backgroundColor == "rgb(76, 151, 67)") {
window.location.replace("J1M4.php");
} else if(document.getElementById("Match5").style.backgroundColor == "rgb(76, 151, 67)") {
window.location.replace("J1M5.php");
} else if(document.getElementById("Match6").style.backgroundColor == "rgb(76, 151, 67)") {
window.location.replace("J1M6.php");
} else if(document.getElementById("Match7").style.backgroundColor == "rgb(76, 151, 67)") {
window.location.replace("J1M7.php");
} else if(document.getElementById("Match8").style.backgroundColor == "rgb(76, 151, 67)") {
window.location.replace("J1M8.php");
} else if(document.getElementById("Match9").style.backgroundColor == "rgb(76, 151, 67)") {
window.location.replace("J1M9.php");
} else if(document.getElementById("Match10").style.backgroundColor == "rgb(76, 151, 67)") {
window.location.replace("J1M10.php");
} else if(document.getElementById("Match11").style.backgroundColor == "rgb(76, 151, 67)") {
window.location.replace("J1M11.php");
} else if(document.getElementById("Match12").style.backgroundColor == "rgb(76, 151, 67)") {
window.location.replace("J1M12.php");
} else if(document.getElementById("Match13").style.backgroundColor == "rgb(76, 151, 67)") {
window.location.replace("J1M13.php");
} else if(document.getElementById("Match14").style.backgroundColor == "rgb(76, 151, 67)") {
window.location.replace("J1M14.php");
}
}
function setJoueur2(){
if(document.getElementById("Match1").style.backgroundColor == "rgb(76, 151, 67)") {
window.location.replace("J2M1.php");
} else if(document.getElementById("Match2").style.backgroundColor == "rgb(76, 151, 67)") {
window.location.replace("J2M2.php");
} else if(document.getElementById("Match3").style.backgroundColor == "rgb(76, 151, 67)") {
window.location.replace("J2M3.php");
} else if(document.getElementById("Match4").style.backgroundColor == "rgb(76, 151, 67)") {
window.location.replace("J2M4.php");
} else if(document.getElementById("Match5").style.backgroundColor == "rgb(76, 151, 67)") {
window.location.replace("J2M5.php");
} else if(document.getElementById("Match6").style.backgroundColor == "rgb(76, 151, 67)") {
window.location.replace("J2M6.php");
} else if(document.getElementById("Match7").style.backgroundColor == "rgb(76, 151, 67)") {
window.location.replace("J2M7.php");
} else if(document.getElementById("Match8").style.backgroundColor == "rgb(76, 151, 67)") {
window.location.replace("J2M8.php");
} else if(document.getElementById("Match9").style.backgroundColor == "rgb(76, 151, 67)") {
window.location.replace("J2M9.php");
} else if(document.getElementById("Match10").style.backgroundColor == "rgb(76, 151, 67)") {
window.location.replace("J2M10.php");
} else if(document.getElementById("Match11").style.backgroundColor == "rgb(76, 151, 67)") {
window.location.replace("J2M11.php");
} else if(document.getElementById("Match12").style.backgroundColor == "rgb(76, 151, 67)") {
window.location.replace("J2M12.php");
} else if(document.getElementById("Match13").style.backgroundColor == "rgb(76, 151, 67)") {
window.location.replace("J2M13.php");
} else if(document.getElementById("Match14").style.backgroundColor == "rgb(76, 151, 67)") {
window.location.replace("J2M14.php");
}
}
function afficherMatch(){
if(document.getElementById("Match1").style.backgroundColor == "rgb(76, 151, 67)") {
var joueurs = document.getElementById("Match1").innerHTML.split(' - ');
document.getElementById("nomcache1").value = joueurs[0]
document.getElementById("nomcache2").value = joueurs[1]
document.getElementById("form2").submit()
} else if(document.getElementById("Match2").style.backgroundColor == "rgb(76, 151, 67)") {
var joueurs = document.getElementById("Match2").innerHTML.split(' - ');
document.getElementById("nomcache1").value = joueurs[0]
document.getElementById("nomcache2").value = joueurs[1]
document.getElementById("form2").submit()
} else if(document.getElementById("Match3").style.backgroundColor == "rgb(76, 151, 67)") {
var joueurs = document.getElementById("Match3").innerHTML.split(' - ');
document.getElementById("nomcache1").value = joueurs[0]
document.getElementById("nomcache2").value = joueurs[1]
document.getElementById("form2").submit()
} else if(document.getElementById("Match4").style.backgroundColor == "rgb(76, 151, 67)") {
var joueurs = document.getElementById("Match4").innerHTML.split(' - ');
document.getElementById("nomcache1").value = joueurs[0]
document.getElementById("nomcache2").value = joueurs[1]
document.getElementById("form2").submit()
} else if(document.getElementById("Match5").style.backgroundColor == "rgb(76, 151, 67)") {
var joueurs = document.getElementById("Match5").innerHTML.split(' - ');
document.getElementById("nomcache1").value = joueurs[0]
document.getElementById("nomcache2").value = joueurs[1]
document.getElementById("form2").submit()
} else if(document.getElementById("Match6").style.backgroundColor == "rgb(76, 151, 67)") {
var joueurs = document.getElementById("Match6").innerHTML.split(' - ');
document.getElementById("nomcache1").value = joueurs[0]
document.getElementById("nomcache2").value = joueurs[1]
document.getElementById("form2").submit()
} else if(document.getElementById("Match7").style.backgroundColor == "rgb(76, 151, 67)") {
var joueurs = document.getElementById("Match7").innerHTML.split(' - ');
document.getElementById("nomcache1").value = joueurs[0]
document.getElementById("nomcache2").value = joueurs[1]
document.getElementById("form2").submit()
} else if(document.getElementById("Match8").style.backgroundColor == "rgb(76, 151, 67)") {
var joueurs = document.getElementById("Match8").innerHTML.split(' - ');
document.getElementById("nomcache1").value = joueurs[0]
document.getElementById("nomcache2").value = joueurs[1]
document.getElementById("form2").submit()
} else if(document.getElementById("Match9").style.backgroundColor == "rgb(76, 151, 67)") {
var joueurs = document.getElementById("Match9").innerHTML.split(' - ');
document.getElementById("nomcache1").value = joueurs[0]
document.getElementById("nomcache2").value = joueurs[1]
document.getElementById("form2").submit()
} else if(document.getElementById("Match10").style.backgroundColor == "rgb(76, 151, 67)") {
var joueurs = document.getElementById("Match10").innerHTML.split(' - ');
document.getElementById("nomcache1").value = joueurs[0]
document.getElementById("nomcache2").value = joueurs[1]
document.getElementById("form2").submit()
} else if(document.getElementById("Match11").style.backgroundColor == "rgb(76, 151, 67)") {
var joueurs = document.getElementById("Match11").innerHTML.split(' - ');
document.getElementById("nomcache1").value = joueurs[0]
document.getElementById("nomcache2").value = joueurs[1]
document.getElementById("form2").submit()
} else if(document.getElementById("Match12").style.backgroundColor == "rgb(76, 151, 67)") {
var joueurs = document.getElementById("Match12").innerHTML.split(' - ');
document.getElementById("nomcache1").value = joueurs[0]
document.getElementById("nomcache2").value = joueurs[1]
document.getElementById("form2").submit()
} else if(document.getElementById("Match13").style.backgroundColor == "rgb(76, 151, 67)") {
var joueurs = document.getElementById("Match13").innerHTML.split(' - ');
document.getElementById("nomcache1").value = joueurs[0]
document.getElementById("nomcache2").value = joueurs[1]
document.getElementById("form2").submit()
} else if(document.getElementById("Match14").style.backgroundColor == "rgb(76, 151, 67)") {
var joueurs = document.getElementById("Match14").innerHTML.split(' - ');
document.getElementById("nomcache1").value = joueurs[0]
document.getElementById("nomcache2").value = joueurs[1]
document.getElementById("form2").submit()
}
}
function couleurset(val){
document.getElementById("gestionset1").style.backgroundColor = "#dfebf4";
document.getElementById("gestionset2").style.backgroundColor = "#dfebf4";
document.getElementById("gestionset3").style.backgroundColor = "#dfebf4";
document.getElementById("gestionset4").style.backgroundColor = "#dfebf4";
document.getElementById("gestionset5").style.backgroundColor = "#dfebf4";
document.getElementById("gestionset1").style.color = "#86aac6";
document.getElementById("gestionset2").style.color = "#86aac6";
document.getElementById("gestionset3").style.color = "#86aac6";
document.getElementById("gestionset4").style.color = "#86aac6";
document.getElementById("gestionset5").style.color = "#86aac6";
val.style.backgroundColor = "#4c9743";
val.style.color = "#ffffff";
}
function match1(val){
if(val.style.backgroundColor == "rgb(49, 135, 196)"){
window.location.replace("match1E1.php");
} else {
window.location.replace("match1E0.php");
}
}
function match2(val){
if(val.style.backgroundColor == "rgb(49, 135, 196)"){
window.location.replace("match2E1.php");
} else {
window.location.replace("match2E0.php");
}
}
function match3(val){
if(val.style.backgroundColor == "rgb(49, 135, 196)"){
window.location.replace("match3E1.php");
} else {
window.location.replace("match3E0.php");
}
}
function match4(val){
if(val.style.backgroundColor == "rgb(49, 135, 196)"){
window.location.replace("match4E1.php");
} else {
window.location.replace("match4E0.php");
}
}
function match5(val){
if(val.style.backgroundColor == "rgb(49, 135, 196)"){
window.location.replace("match5E1.php");
} else {
window.location.replace("match5E0.php");
}
}
function match6(val){
if(val.style.backgroundColor == "rgb(49, 135, 196)"){
window.location.replace("match6E1.php");
} else {
window.location.replace("match6E0.php");
}
}
function match7(val){
if(val.style.backgroundColor == "rgb(49, 135, 196)"){
window.location.replace("match7E1.php");
} else {
window.location.replace("match7E0.php");
}
}
function match8(val){
if(val.style.backgroundColor == "rgb(49, 135, 196)"){
window.location.replace("match8E1.php");
} else {
window.location.replace("match8E0.php");
}
}
function match9(val){
if(val.style.backgroundColor == "rgb(49, 135, 196)"){
window.location.replace("match9E1.php");
} else {
window.location.replace("match9E0.php");
}
}
function match10(val){
if(val.style.backgroundColor == "rgb(49, 135, 196)"){
window.location.replace("match10E1.php");
} else {
window.location.replace("match10E0.php");
}
}
function match11(val){
if(val.style.backgroundColor == "rgb(49, 135, 196)"){
window.location.replace("match11E1.php");
} else {
window.location.replace("match11E0.php");
}
}
function match12(val){
if(val.style.backgroundColor == "rgb(49, 135, 196)"){
window.location.replace("match12E1.php");
} else {
window.location.replace("match12E0.php");
}
}
function match13(val){
if(val.style.backgroundColor == "rgb(49, 135, 196)"){
window.location.replace("match13E1.php");
} else {
window.location.replace("match13E0.php");
}
}
function match14(val){
if(val.style.backgroundColor == "rgb(49, 135, 196)"){
window.location.replace("match14E1.php");
} else {
window.location.replace("match14E0.php");
}
}
function ajouter_point_j1(){
for(var set=1; set<=5; set++){
if(document.getElementById("gestionset"+set).style.backgroundColor == "rgb(76, 151, 67)"){
window.location.replace("plusJ1S"+set+".php");
}
}
}
function ajouter_point_j2(){
for(var set=1; set<=5; set++){
if(document.getElementById("gestionset"+set).style.backgroundColor == "rgb(76, 151, 67)"){
window.location.replace("plusJ2S"+set+".php");
}
}
afficher_set();
couleurservice();
}
function retirer_point_j1(){
for(var set=1; set<=5; set++){
if(document.getElementById("gestionset"+set).style.backgroundColor == "rgb(76, 151, 67)"){
window.location.replace("moinsJ1S"+set+".php");
}
}
afficher_set();
couleurservice();
}
function retirer_point_j2(){
for(var set=1; set<=5; set++){
if(document.getElementById("gestionset"+set).style.backgroundColor == "rgb(76, 151, 67)"){
window.location.replace("moinsJ2S"+set+".php");
}
}
afficher_set();
couleurservice();
}
function afficher_set(){
document.getElementById("pointJ1S1").style.display="block";
document.getElementById("pointJ2S1").style.display="block";
for(var set=1; set<=4; set++){
if(((document.getElementById("pointJ1S"+set).innerHTML>=11)||(document.getElementById("pointJ2S"+set).innerHTML>=11))
&&
((document.getElementById("pointJ2S"+set).innerHTML>=(document.getElementById("pointJ1S"+set).innerHTML*1+2*1))
|| (document.getElementById("pointJ1S"+set).innerHTML>=(document.getElementById("pointJ2S"+set).innerHTML*1+2*1)))){
var set_suivant=set+1;
document.getElementById("pointJ1S"+set_suivant).style.display="block";
document.getElementById("pointJ2S"+set_suivant).style.display="block";
document.getElementById("pointJ1S"+set).style.backgroundColor="#dfebf4"
document.getElementById("pointJ2S"+set).style.backgroundColor="#dfebf4"
document.getElementById("pointJ1S"+set).style.color="#86aac6";
document.getElementById("pointJ2S"+set).style.color="#86aac6";
var sett = set + 1
document.getElementById("gestionset"+sett).style.display = "block";
} else{
var sett = set + 1
document.getElementById("gestionset"+sett).style.display = "none";
}
}
}
function sponsor(){
if(document.getElementById("sponsor").style.backgroundColor == "rgb(76, 151, 67)"){
window.location.replace("sponsor_stop.php");
}
else{
window.location.replace("sponsor.php");
}
}
function score_rencontre(){
if(document.getElementById("score_rencontre").style.backgroundColor == "rgb(76, 151, 67)"){
window.location.replace("score_stop.php");
}
else{
window.location.replace("score.php");
}
}
</script>
</head>
<body onload='coulset1();afficher_set();couleurservice();'>
<?php
require 'connection.php';
echo "<div class='Match1' id='Match1' onclick='match1(this)'>";
$sql = "SELECT JoueurA, JoueurW FROM info_match;";
$resultset = $connexion->prepare($sql);
$resultset->execute();
$row = $resultset->fetch(PDO::FETCH_ASSOC);
echo $row['JoueurA']." - ".$row['JoueurW'];
echo "</div>";
echo "<div class='Match2' id='Match2' onclick='match2(this)'>";
$sql = "SELECT JoueurB, JoueurX FROM info_match;";
$resultset = $connexion->prepare($sql);
$resultset->execute();
$row = $resultset->fetch(PDO::FETCH_ASSOC);
echo $row['JoueurB']." - ".$row['JoueurX'];
echo "</div>";
echo "<div class='Match3' id='Match3' onclick='match3(this)'>";
$sql = "SELECT JoueurC, JoueurY FROM info_match;";
$resultset = $connexion->prepare($sql);
$resultset->execute();
$row = $resultset->fetch(PDO::FETCH_ASSOC);
echo $row['JoueurC']." - ".$row['JoueurY'];
echo "</div>";
echo "<div class='Match4' id='Match4' onclick='match4(this)'>";
$sql = "SELECT JoueurD, JoueurZ FROM info_match;";
$resultset = $connexion->prepare($sql);
$resultset->execute();
$row = $resultset->fetch(PDO::FETCH_ASSOC);
echo $row['JoueurD']." - ".$row['JoueurZ'];
echo "</div>";
echo "<div class='Match5' id='Match5' onclick='match5(this)'>";
$sql = "SELECT JoueurA, JoueurX FROM info_match;";
$resultset = $connexion->prepare($sql);
$resultset->execute();
$row = $resultset->fetch(PDO::FETCH_ASSOC);
echo $row['JoueurA']." - ".$row['JoueurX'];
echo "</div>";
echo "<div class='Match6' id='Match6' onclick='match6(this)'>";
$sql = "SELECT JoueurB, JoueurW FROM info_match;";
$resultset = $connexion->prepare($sql);
$resultset->execute();
$row = $resultset->fetch(PDO::FETCH_ASSOC);
echo $row['JoueurB']." - ".$row['JoueurW'];
echo "</div>";
echo "<div class='Match7' id='Match7' onclick='match7(this)'>";
$sql = "SELECT JoueurD, JoueurY FROM info_match;";
$resultset = $connexion->prepare($sql);
$resultset->execute();
$row = $resultset->fetch(PDO::FETCH_ASSOC);
echo $row['JoueurD']." - ".$row['JoueurY'];
echo "</div>";
echo "<div class='Match8' id='Match8' onclick='match8(this)'>";
$sql = "SELECT JoueurC, JoueurZ FROM info_match;";
$resultset = $connexion->prepare($sql);
$resultset->execute();
$row = $resultset->fetch(PDO::FETCH_ASSOC);
echo $row['JoueurC']." - ".$row['JoueurZ'];
echo "</div>";
echo "<div class='Match9' id='Match9' onclick='match9(this)'>";
echo "Double 1 - Double 1";
echo "</div>";
echo "<div class='Match10' id='Match10' onclick='match10(this)'>";
echo "Double 2 - Double 2";
echo "</div>";
echo "<div class='Match11' id='Match11' onclick='match11(this)'>";
$sql = "SELECT JoueurA, JoueurY FROM info_match;";
$resultset = $connexion->prepare($sql);
$resultset->execute();
$row = $resultset->fetch(PDO::FETCH_ASSOC);
echo $row['JoueurA']." - ".$row['JoueurY'];
echo "</div>";
echo "<div class='Match12' id='Match12' onclick='match12(this)'>";
$sql = "SELECT JoueurC, JoueurW FROM info_match;";
$resultset = $connexion->prepare($sql);
$resultset->execute();
$row = $resultset->fetch(PDO::FETCH_ASSOC);
echo $row['JoueurC']." - ".$row['JoueurW'];
echo "</div>";
echo "<div class='Match13' id='Match13' onclick='match13(this)'>";
$sql = "SELECT JoueurD, JoueurX FROM info_match;";
$resultset = $connexion->prepare($sql);
$resultset->execute();
$row = $resultset->fetch(PDO::FETCH_ASSOC);
echo $row['JoueurD']." - ".$row['JoueurX'];
echo "</div>";
echo "<div class='Match14' id='Match14' onclick='match14(this)'>";
$sql = "SELECT JoueurB, JoueurZ FROM info_match;";
$resultset = $connexion->prepare($sql);
$resultset->execute();
$row = $resultset->fetch(PDO::FETCH_ASSOC);
echo $row['JoueurB']." - ".$row['JoueurZ'];
echo "</div>";
for($joueur=1; $joueur<=2; $joueur++){
echo "<div class='Joueur".$joueur."'>";
echo "<div id='nomJ".$joueur."' class='nom'>";
$sql = "SELECT Joueur".$joueur." FROM info_scoreboard;";
$resultset = $connexion->prepare($sql);
$resultset->execute();
$row = $resultset->fetch(PDO::FETCH_ASSOC);
echo $row['Joueur'.$joueur];
echo "</div>";
echo "<div id='barreservice".$joueur."' class='barreservice'>";
echo "</div>";
for($set=1; $set<=5; $set++){
echo "<div id='pointJ".$joueur."S".$set."' class='set pointJ".$joueur."S".$set."'>";
$sql2 = "SELECT J".$joueur."S".$set." FROM info_scoreboard;";
$resultset = $connexion->prepare($sql2);
$resultset->execute();
$row2 = $resultset->fetch(PDO::FETCH_ASSOC);
echo $row2['J'.$joueur.'S'.$set];
echo "</div>";
}
echo "</div>";
}
for($joueur=1; $joueur<=2; $joueur++){
echo "<div class='gestion_joueur".$joueur."'>
<form id='form' method='post' action='nom_joueur".$joueur.".php'>";
$sql = "SELECT Joueur".$joueur." FROM info_scoreboard;";
$resultset = $connexion->prepare($sql);
$resultset->execute();
$row = $resultset->fetch(PDO::FETCH_ASSOC);
echo "
<input name='joueur".$joueur."' id='nom".$joueur."' type='text' class='textjoueur' onchange='nomj".$joueur."(this.value); form.submit();' placeholder='Joueur ".$joueur."' value='".$row['Joueur'.$joueur]."'>
</form>
<div class='match'>
<div class='ajouter_point s".$joueur."' onclick='ajouter_point_j".$joueur."()'>+</div>
<div class='retirer_point s".$joueur."' onclick='retirer_point_j".$joueur."()'>-</div>
</div>
<div id='commencer_servir".$joueur."' class='commencer_servir".$joueur."' onclick='servir".$joueur."(this)'>Commence servir</div>
<div id='gestion_timeout".$joueur."' class='gestion_timeout".$joueur."' onclick='timeout(this)'>Time Out</div>
</div>";
}
for($set=1; $set<=5; $set++)
echo "<div id='gestionset".$set."' class='gestion_set' onclick='couleurset(this)'>".$set."</div>";
echo "<div id='score_rencontre' class='score_rencontre' onclick='score_rencontre()'>";
echo "Score rencontre</br>";
$sql = "SELECT ScoreE1, ScoreE2 FROM info_scoreboard;";
$resultset = $connexion->prepare($sql); $resultset->execute();
$row = $resultset->fetch(PDO::FETCH_ASSOC);
echo $row["ScoreE1"]."-".$row["ScoreE2"];
echo "</div>";
echo "<div id='sponsor' class='sponsor' onclick='sponsor()'>Sponsors</div>";
echo "<div id='setJoueur1' class='setJoueur1' onclick='setJoueur1()'></div>";
echo "<div id='setJoueur2' class='setJoueur2' onclick='setJoueur2()'></div>";
echo "<div id='afficherMatch' class='afficherMatch' onclick='afficherMatch()'>Afficher match</div>";
echo "<form id='form2' method='post' action='nom_joueurs.php'>";
echo "<input name='joueurcache1' id='nomcache1' type='hidden' >";
echo "<input name='joueurcache2' id='nomcache2' type='hidden' >";
echo "</form>";
?>
</body>
</html>
<style type="text/css">
body{
font-family: 'roboto', sans-serif;
}
.Match{
margin-top: 30%;
background-color: #eeeeee;
}
.Match1{
position: absolute;
top: 40%;
left: 28%;
width: 6%;
height: 7%;
background-color: #3187c4;
border-radius: 3px;
color: white;
z-index: 9999;
}
.Match2{
position: absolute;
top: 40%;
left: 34.5%;
width: 6%;
height: 7%;
background-color: #3187c4;
border-radius: 3px;
color: white;
z-index: 9999;
}
.Match3{
position: absolute;
top: 40%;
left: 41%;
width: 6%;
height: 7%;
background-color: #3187c4;
border-radius: 3px;
color: white;
z-index: 9999;
}
.Match4{
position: absolute;
top: 40%;
left: 47.5%;
width: 6%;
height: 7%;
background-color: #3187c4;
border-radius: 3px;
color: white;
z-index: 9999;
}
.Match5{
position: absolute;
top: 40%;
left: 54%;
width: 6%;
height: 7%;
background-color: #3187c4;
border-radius: 3px;
color: white;
z-index: 9999;
}
.Match6{
position: absolute;
top: 40%;
left: 60.5%;
width: 6%;
height: 7%;
background-color: #3187c4;
border-radius: 3px;
color: white;
z-index: 9999;
}
.Match7{
position: absolute;
top: 40%;
left: 67%;
width: 6%;
height: 7%;
background-color: #3187c4;
border-radius: 3px;
color: white;
z-index: 9999;
}
.Match8{
position: absolute;
top: 49%;
left: 28%;
width: 6%;
height: 7%;
background-color: #3187c4;
border-radius: 3px;
color: white;
z-index: 9999;
}
.Match9{
position: absolute;
top: 49%;
left: 34.5%;
width: 6%;
height: 7%;
background-color: #3187c4;
border-radius: 3px;
color: white;
z-index: 9999;
}
.Match10{
position: absolute;
top: 49%;
left: 41%;
width: 6%;
height: 7%;
background-color: #3187c4;
border-radius: 3px;
color: white;
z-index: 9999;
}
.Match11{
position: absolute;
top: 49%;
left: 47.5%;
width: 6%;
height: 7%;
background-color: #3187c4;
border-radius: 3px;
color: white;
z-index: 9999;
}
.Match12{
position: absolute;
top: 49%;
left: 54%;
width: 6%;
height: 7%;
background-color: #3187c4;
border-radius: 3px;
color: white;
z-index: 9999;
}
.Match13{
position: absolute;
top: 49%;
left: 60.5%;
width: 6%;
height: 7%;
background-color: #3187c4;
border-radius: 3px;
color: white;
z-index: 9999;
}
.Match14{
position: absolute;
top: 49%;
left: 67%;
width: 6%;
height: 7%;
background-color: #3187c4;
border-radius: 3px;
color: white;
z-index: 9999;
}
.Joueur1{
position: absolute;
top: 7%;
left: 30%;
width: 47%;
height: 30%;
}
.Joueur2{
position: absolute;
top: 16%;