-
Notifications
You must be signed in to change notification settings - Fork 1
/
db_profil_lesen_mitGruppenansicht.php
1231 lines (1057 loc) · 43 KB
/
db_profil_lesen_mitGruppenansicht.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
<head>
</head>
<?
// Variablendefinitionen
// Profil name
$name="";
$groupId="";
$Xnichtgesetzt=true;
//item
$SEint = array();
$FEint = array();
//Normtabellen
$normSE = array();
$normFE = array();
//Profilaufaddieren
$SEPint = array ();
$FEPint = array ();
//korrelation
$korrelation=0;
$SEPmittel = 0;
$FEPmittel = 0;
//UebereinstimmungSEFE
$UebereinstimmungSEFE=0;
//Profilberechnung
$SEprofilSVG = array();
$SEprofilSVG[0]=0;
$SEprofilSVG[1]=0;
$SEprofilSVG[2]=0;
$SEprofilSVG[3]=0;
$SEprofilSVG[4]=0;
$SEprofilSVG[5]=0;
$SEprofil = array();
$SEprofil[0][0]="0";
$SEprofil[0][1]="0";
$SEprofil[0][2]="0";
$SEprofil[0][3]="0";
$SEprofil[0][4]="0";
$SEprofil[1][0]="0";
$SEprofil[1][1]="0";
$SEprofil[1][2]="0";
$SEprofil[1][3]="0";
$SEprofil[1][4]="0";
$SEprofil[2][0]="0";
$SEprofil[2][1]="0";
$SEprofil[2][2]="0";
$SEprofil[2][3]="0";
$SEprofil[2][4]="0";
$SEprofil[3][0]="0";
$SEprofil[3][1]="0";
$SEprofil[3][2]="0";
$SEprofil[3][3]="0";
$SEprofil[3][4]="0";
$SEprofil[4][0]="0";
$SEprofil[4][1]="0";
$SEprofil[4][2]="0";
$SEprofil[4][3]="0";
$SEprofil[4][4]="0";
$SEprofil[5][0]="0";
$SEprofil[5][1]="0";
$SEprofil[5][2]="0";
$SEprofil[5][3]="0";
$SEprofil[5][4]="0";
$FEprofilSVG = array();
$FEprofilSVG[0]=0;
$FEprofilSVG[1]=1;
$FEprofilSVG[2]=2;
$FEprofilSVG[3]=3;
$FEprofilSVG[4]=4;
$FEprofilSVG[5]=4;
$FEprofil = array();
$FEprofil[0][0]="0";
$FEprofil[0][1]="0";
$FEprofil[0][2]="0";
$FEprofil[0][3]="0";
$FEprofil[0][4]="0";
$FEprofil[1][0]="0";
$FEprofil[1][1]="0";
$FEprofil[1][2]="0";
$FEprofil[1][3]="0";
$FEprofil[1][4]="0";
$FEprofil[2][0]="0";
$FEprofil[2][1]="0";
$FEprofil[2][2]="0";
$FEprofil[2][3]="0";
$FEprofil[2][4]="0";
$FEprofil[3][0]="0";
$FEprofil[3][1]="0";
$FEprofil[3][2]="0";
$FEprofil[3][3]="0";
$FEprofil[3][4]="0";
$FEprofil[4][0]="0";
$FEprofil[4][1]="0";
$FEprofil[4][2]="0";
$FEprofil[4][3]="0";
$FEprofil[4][4]="0";
$FEprofil[5][0]="0";
$FEprofil[5][1]="0";
$FEprofil[5][2]="0";
$FEprofil[5][3]="0";
$FEprofil[5][4]="0";
//Funktionsdefinitionen
//Normtabellen lesen
function db_normSE_lesen($sql,$conn,$userID,$session)
{//BEGIN db_lesen
global $normSE;
//echo $sql."<br>";
$result=mysqli_query($conn,$sql);
if($result)
{//BEGIN if $result
$number=mysqli_num_rows($result);
//echo("<P>Es sind $number Datensaetze gelesen worden.</P>");
if($number)
{//BEGIN Suchausgabe>null
while($row=mysqli_fetch_assoc($result))
{//BEGIN row
//echo("<P>Verarbeitung Norm SE nicht auskommentiert</P>");
$normSE[$row['kompetenzID']][]=$row['p1'];$normSE[$row['kompetenzID']][]=$row['p2'];$normSE[$row['kompetenzID']][]=$row['p3'];$normSE[$row['kompetenzID']][]=$row['p4'];$normSE[$row['kompetenzID']][]=$row['p5'];
}//END row
}//ENDE suchausgabe >null
//var_dump($normSE);
}//END if result
else
{//BEGIN else $result
echo("<BR>"."Errornumber= ".mysqli_error($conn));
}//END if result
}//END db_lesen
function db_normFE_lesen($sql,$conn,$userID,$session)
{//BEGIN db_lesen
global $normFE;
//echo $sql."<br>";
$result=mysqli_query($conn,$sql);
if($result)
{//BEGIN if $result
$number=mysqli_num_rows($result);
//echo("<P>Es sind $number Datensaetze gelesen worden.</P>");
if($number)
{//BEGIN Suchausgabe>null
while($row=mysqli_fetch_assoc($result))
{//BEGIN row
//echo("<P>Verarbeitung Norm FE nicht auskommentiert</P>");
$normFE[$row['kompetenzID']][]=$row['p1'];$normFE[$row['kompetenzID']][]=$row['p2'];$normFE[$row['kompetenzID']][]=$row['p3'];$normFE[$row['kompetenzID']][]=$row['p4'];$normFE[$row['kompetenzID']][]=$row['p5'];
}//END row
}//ENDE suchausgabe >null
//var_dump($normFE);
}//END if result
else
{//BEGIN else $result
echo("<BR>"."Errornumber= ".mysqli_error($conn));
}//END if result
}//END db_lesen
//Profillesen
function db_profil_lesen($sql,$conn,$userID,$session)
{//BEGIN db_lesen
global $SEint, $FEint, $name, $groupId;
//echo $sql."<br>";
$result=mysqli_query($conn,$sql);
if($result)
{//BEGIN if $result
$number=mysqli_num_rows($result);
//echo("<P>Es sind $number Datensaetze gelesen worden.</P>");
if($number)
{//BEGIN Suchausgabe>null
while($row=mysqli_fetch_assoc($result))
{//BEGIN row
//echo("<P>Verarbeitung SEint FEint nicht auskommentiert</P>");
//var_dump($row);
$name=$row['name'];
$groupId=$row['gruppeID'];
$SEint[1]=$row['item1'];
$SEint[2]=$row['item2'];
$SEint[3]=$row['item3'];
$SEint[4]=$row['item4'];
$SEint[5]=$row['item5'];
$SEint[6]=$row['item6'];
$SEint[7]=$row['item7'];
$SEint[8]=$row['item8'];
$SEint[9]=$row['item9'];
$SEint[10]=$row['item10'];
$SEint[11]=$row['item11'];
$SEint[12]=$row['item12'];
$SEint[13]=$row['item13'];
$SEint[14]=$row['item14'];
$SEint[15]=$row['item15'];
$SEint[16]=$row['item16'];
$SEint[17]=$row['item17'];
$SEint[18]=$row['item18'];
$SEint[19]=$row['item19'];
$SEint[20]=$row['item20'];
$SEint[21]=$row['item21'];
$SEint[22]=$row['item22'];
$SEint[23]=$row['item23'];
$SEint[24]=$row['item24'];
$SEint[25]=$row['item25'];
$SEint[26]=$row['item26'];
$SEint[27]=$row['item27'];
$SEint[28]=$row['item28'];
$SEint[29]=$row['item29'];
$SEint[30]=$row['item30'];
$SEint[31]=$row['item31'];
$SEint[32]=$row['item32'];
$SEint[33]=$row['item33'];
$SEint[34]=$row['item34'];
$SEint[35]=$row['item35'];
$SEint[36]=$row['item36'];
$FEint[1]=$row['feitem1'];
$FEint[2]=$row['feitem2'];
$FEint[3]=$row['feitem3'];
$FEint[4]=$row['feitem4'];
$FEint[5]=$row['feitem5'];
$FEint[6]=$row['feitem6'];
$FEint[7]=$row['feitem7'];
$FEint[8]=$row['feitem8'];
$FEint[9]=$row['feitem9'];
$FEint[10]=$row['feitem10'];
$FEint[11]=$row['feitem11'];
$FEint[12]=$row['feitem12'];
$FEint[13]=$row['feitem13'];
$FEint[14]=$row['feitem14'];
$FEint[15]=$row['feitem15'];
$FEint[16]=$row['feitem16'];
$FEint[17]=$row['feitem17'];
$FEint[18]=$row['feitem18'];
$FEint[19]=$row['feitem19'];
$FEint[20]=$row['feitem20'];
$FEint[21]=$row['feitem21'];
$FEint[22]=$row['feitem22'];
$FEint[23]=$row['feitem23'];
$FEint[24]=$row['feitem24'];
$FEint[25]=$row['feitem25'];
$FEint[26]=$row['feitem26'];
$FEint[27]=$row['feitem27'];
$FEint[28]=$row['feitem28'];
$FEint[29]=$row['feitem29'];
$FEint[30]=$row['feitem30'];
$FEint[31]=$row['feitem31'];
$FEint[32]=$row['feitem32'];
$FEint[33]=$row['feitem33'];
$FEint[34]=$row['feitem34'];
$FEint[35]=$row['feitem35'];
$FEint[36]=$row['feitem36'];
}//END row
}//ENDE suchausgabe >null
//var_dump($SEint);var_dump($FEint);
}//END if result
else
{//BEGIN else $result
echo("<BR>"."Errornumber= ".mysqli_error($conn));
}//END if result
}//END db_lesen
//Verarbeitung
//Daten aus Datenbank einlesen
//Profil SQL definieren
$sqlprofil="SELECT * FROM profil WHERE profilID LIKE $ID ";
//echo $sqlprofil."<br>";
//Normtabellen SQL waehlen
if ($normtabelle=="hs")
{
$sqlSE="SELECT * FROM normSEhs ORDER BY kompetenzID";
$sqlFE="SELECT * FROM normFEhs ORDER BY kompetenzID";
}
else //$normtabelle=="fs"
{
$sqlSE="SELECT * FROM normSEfs ORDER BY kompetenzID";
$sqlFE="SELECT * FROM normFEfs ORDER BY kompetenzID";
}
//echo $sqlSE."<br>";
//echo $sqlFE."<br>";
$conn=connect($host,$user,$pass,$db);
//echo("Funktionsaufrufe auskommentiert<br>");
db_normSE_lesen($sqlSE,$conn,$userID,$session);
db_normFE_lesen($sqlFE,$conn,$userID,$session);
//db_profil_lesen($sqlprofil,$conn,$userID,$session);
// Vor dem Aufruf der Funktion
//echo "groupId name vor dem Aufruf der Funktion: $name $groupId" . (isset($groupId) ? $groupId : 'nicht gesetzt') . "<br>";
// Funktion aufrufen
db_profil_lesen($sqlprofil, $conn, $userID, $session);
// Nach dem Funktionsaufruf
//echo "groupId nach dem Funktionsaufruf: $name $groupId " . (isset($groupId) ? $groupId : 'nicht gesetzt') . "<br>";
$conn=deconnect($conn);
// Var_dump daten aus datenbank
//var_dump($SEint);var_dump($FEint);
//var_dump($normSE);
//var_dump($normFE);
//Aufsummierung Punkte
$SEPint[1]=(int)$SEint[1]+ (int)$SEint[2]+ (int)$SEint[3]+ (int)$SEint[4]+ (int)$SEint[5]+
(int)$SEint[6]+ (int)$SEint[7]+ (int)$SEint[8]+ (int)$SEint[9]+ (int)$SEint[10];
$SEPint[2]=(int)$SEint[11]+ (int)$SEint[12]+ (int)$SEint[13]+ (int)$SEint[14]+ (int)$SEint[15]+
(int)$SEint[16]+ (int)$SEint[17]+ (int)$SEint[18]+ (int)$SEint[19]+ (int)$SEint[20];
$SEPint[3]=(int)$SEint[21]+ (int)$SEint[22]+ (int)$SEint[23]+ (int)$SEint[24]+ (int)$SEint[25]+
(int)$SEint[26]+ (int)$SEint[27]+ (int)$SEint[28]+ (int)$SEint[9]+ (int)$SEint[10];
$SEPint[4]=(int)$SEint[29]+ (int)$SEint[30]+ (int)$SEint[31]+ (int)$SEint[32]+ (int)$SEint[33]+
(int)$SEint[34]+ (int)$SEint[35]+ (int)$SEint[36];
$SEPint[5]=(int)$SEint[1]+ (int)$SEint[2]+
(int)$SEint[6]+ (int)$SEint[7]+ (int)$SEint[8]+ (int)$SEint[9]+ (int)$SEint[10]+
(int)$SEint[12]+(int)$SEint[13]+ (int)$SEint[14]+ (int)$SEint[15];
$SEPint[6]=(int)$SEint[3]+ (int)$SEint[4]+ (int)$SEint[5]+
(int)$SEint[9]+ (int)$SEint[10]+ (int)$SEint[11]+
(int)$SEint[17]+ (int)$SEint[18];
$FEPint[1]=(int)$FEint[1]+ (int)$FEint[2]+ (int)$FEint[3]+ (int)$FEint[4]+ (int)$FEint[5]+
(int)$FEint[6]+ (int)$FEint[7]+ (int)$FEint[8]+ (int)$FEint[9]+ (int)$FEint[10];
$FEPint[2]=(int)$FEint[11]+ (int)$FEint[12]+ (int)$FEint[13]+ (int)$FEint[14]+ (int)$FEint[15]+
(int)$FEint[16]+ (int)$FEint[17]+ (int)$FEint[18]+ (int)$FEint[19]+ (int)$FEint[20];
$FEPint[3]=(int)$FEint[21]+ (int)$FEint[22]+ (int)$FEint[23]+ (int)$FEint[24]+ (int)$FEint[25]+
(int)$FEint[26]+ (int)$FEint[27]+ (int)$FEint[28]+ (int)$FEint[9]+ (int)$FEint[10];
$FEPint[4]=(int)$FEint[29]+ (int)$FEint[30]+ (int)$FEint[31]+ (int)$FEint[32]+ (int)$FEint[33]+
(int)$FEint[34]+ (int)$FEint[35]+ (int)$FEint[36];
$FEPint[5]=(int)$FEint[1]+ (int)$FEint[2]+
(int)$FEint[6]+ (int)$FEint[7]+ (int)$FEint[8]+ (int)$FEint[9]+ (int)$FEint[10]+
(int)$FEint[12]+(int)$FEint[13]+ (int)$FEint[14]+ (int)$FEint[15];
$FEPint[6]=(int)$FEint[3]+ (int)$FEint[4]+ (int)$FEint[5]+
(int)$FEint[9]+ (int)$FEint[10]+ (int)$FEint[11]+
(int)$FEint[17]+ (int)$FEint[18];
//Testvariable falls nicht global
//$SEPint[1]=25;
//$FEPint[1]=25;
//var_dump($SEPint);var_dump($FEPint);
//Korrelation berechnen
$SEPmittel = ($SEPint[1]+ $SEPint[2]+ $SEPint[3]+ $SEPint[4]+ $SEPint[5]+ $SEPint[6]) / 6;
$FEPmittel = ($FEPint[1]+ $FEPint[2]+ $FEPint[3]+ $FEPint[4]+ $FEPint[5]+ $FEPint[6]) / 6;
//var_dump($SEPmittel);var_dump($FEPmittel);
$korrelation =
(
(($SEPmittel-$SEPint[1])*($FEPmittel-$FEPint[1]))+
(($SEPmittel-$SEPint[2])*($FEPmittel-$FEPint[2]))+
(($SEPmittel-$SEPint[3])*($FEPmittel-$FEPint[3]))+
(($SEPmittel-$SEPint[4])*($FEPmittel-$FEPint[4]))+
(($SEPmittel-$SEPint[5])*($FEPmittel-$FEPint[5]))+
(($SEPmittel-$SEPint[6])*($FEPmittel-$FEPint[6]))
)
/
sqrt
(
(
pow($SEPmittel-$SEPint[1],2)+
pow($SEPmittel-$SEPint[2],2)+
pow($SEPmittel-$SEPint[3],2)+
pow($SEPmittel-$SEPint[4],2)+
pow($SEPmittel-$SEPint[5],2)+
pow($SEPmittel-$SEPint[6],2)
)
*
(
pow($FEPmittel-$FEPint[1],2)+
pow($FEPmittel-$FEPint[2],2)+
pow($FEPmittel-$FEPint[3],2)+
pow($FEPmittel-$FEPint[4],2)+
pow($FEPmittel-$FEPint[5],2)+
pow($FEPmittel-$FEPint[6],2)
)
);
//var_dump($korrelation);
//echo("Korrelation= ".$korrelation."<br>");
//uebereinstimmung in Prozent berechnen
for ($i = 1; $i <= 36; $i++)
{
if ($SEint[$i] == $FEint[$i])
{
$UebereinstimmungSEFE=$UebereinstimmungSEFE+1;
}
}
$UebereinstimmungSEFE=$UebereinstimmungSEFE*100/36;
//echo("Uebereinstimmung= ".$UebereinstimmungSEFE."<br>");
//profil berechnen
for ($kompetenz = 0; $kompetenz <= 5; $kompetenz++)
{
$Xnichtgesetzt=true;
for ($punkte = 0; $punkte <= 4; $punkte++)
{
if ($SEPint[$kompetenz+1] < (int)$normSE[$kompetenz+1][$punkte])
{
$SEprofil[$kompetenz][$punkte]="X";
$SEprofilSVG[$kompetenz]=$punkte;
$punkte =5;$Xnichtgesetzt=false;
}
}
if ($Xnichtgesetzt){$SEprofil[$kompetenz][4]="X";$SEprofilSVG[$kompetenz]=4;}
}
for ($kompetenz = 0; $kompetenz <= 5; $kompetenz++)
{
$Xnichtgesetzt=true;
for ($punkte = 0; $punkte <= 4; $punkte++)
{
if ($FEPint[$kompetenz+1] < (int)$normFE[$kompetenz+1][$punkte])
{
$FEprofil[$kompetenz][$punkte]="X";
$FEprofilSVG[$kompetenz]=$punkte;
$punkte =5;$Xnichtgesetzt=false;
}
}
if ($Xnichtgesetzt){$FEprofil[$kompetenz][4]="X";$FEprofilSVG[$kompetenz]=4;}
}
// Berechnung der Punktzahlen in der Tabelle
$sql_update = "UPDATE profil SET
kompetenz1 = " . (int)($SEprofilSVG[0]+1) . ",
kompetenz2 = " . (int)($SEprofilSVG[1]+1). ",
kompetenz3 = " . (int)($SEprofilSVG[2]+1) . ",
kompetenz4 = " . (int)($SEprofilSVG[3]+1). ",
kompetenz5 = " . (int)($SEprofilSVG[4]+1). ",
kompetenz6 = " . (int)($SEprofilSVG[5]+1). "
WHERE profilID = $ID";
// Führen Sie das Update-Statement aus
$conn = connect($host, $user, $pass, $db);
if (mysqli_query($conn, $sql_update)) {
echo "Profil erfolgreich aktualisiert.";
} else {
echo "Fehler beim Aktualisieren des Profils: " . mysqli_error($conn);
}
deconnect($conn);
//var_dump($SEprofil);var_dump($FEprofil);
// Profil darstellen
?>
<table width="75%" border="0" cellspacing="0" cellpadding="5" >
<tr>
<td width="32%" valign="top" >
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Profil</h3>
</div>
<div class="panel-body">
<p><? if (!$druckansicht){echo("<a href=http://mein-duesk.org/db_druckansicht.php?ID=$ID&userID=$userID&session=$session&normtabelle=$normtabelle&druckansicht=1 target=_blank>Druckansicht</a><BR><a href=http://mein-duesk.org/db_zeitreihe.php?ID=$ID&userID=$userID&groupId=$groupId&session=$session&normtabelle=$normtabelle&druckansicht=1 target=_blank>Gruppenansicht Selbsteinschätzung</a>");}?></p>
<p>Name: <? echo(" ".$name); ?>
</p>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Selbsteinschätzung</h3>
</div>
<div class="panel-body">
<p> </p>
<table class="table table-bordered">
<thead>
<th width="61%">Selbsteinschätzung</th>
<th width="0%" >1</th>
<th width="7%" >2</th>
<th width="7%" >3</th>
<th width="7%" >4</th>
<th width="18%" >5</th>
</thead></tr>
<tr>
<td >Arbeitsverhalten </td>
<td ><? if ($SEprofil[0][0]=="X") {echo("X");} ?>
</td>
<td ><? if ($SEprofil[0][1]=="X") {echo("X");} ?>
</td>
<td ><? if ($SEprofil[0][2]=="X") {echo("X");} ?>
</td>
<td ><? if ($SEprofil[0][3]=="X") {echo("X");} ?>
</td>
<td ><? if ($SEprofil[0][4]=="X") {echo("X");} ?>
</td>
</tr>
<tr>
<td >Lernverhalten</td>
<td ><? if ($SEprofil[1][0]=="X") {echo("X");} ?>
</td>
<td ><? if ($SEprofil[1][1]=="X") {echo("X");} ?>
</td>
<td ><? if ($SEprofil[1][2]=="X") {echo("X");} ?>
</td>
<td ><? if ($SEprofil[1][3]=="X") {echo("X");} ?>
</td>
<td ><? if ($SEprofil[1][4]=="X") {echo("X");} ?>
</td>
</tr>
<tr>
<td >Sozialverhalten</td>
<td ><? if ($SEprofil[2][0]=="X") {echo("X");} ?>
</td>
<td ><? if ($SEprofil[2][1]=="X") {echo("X");} ?>
</td>
<td ><? if ($SEprofil[2][2]=="X") {echo("X");} ?>
</td>
<td ><? if ($SEprofil[2][3]=="X") {echo("X");} ?>
</td>
<td ><? if ($SEprofil[2][4]=="X") {echo("X");} ?>
</td>
</tr>
<tr>
<td >Fachkompetenz</td>
<td ><? if ($SEprofil[3][0]=="X") {echo("X");} ?>
</td>
<td ><? if ($SEprofil[3][1]=="X") {echo("X");} ?>
</td>
<td ><? if ($SEprofil[3][2]=="X") {echo("X");} ?>
</td>
<td ><? if ($SEprofil[3][3]=="X") {echo("X");} ?>
</td>
<td ><? if ($SEprofil[3][4]=="X") {echo("X");} ?>
</td>
</tr>
<tr>
<td >Personale Kompetenz</td>
<td ><? if ($SEprofil[4][0]=="X") {echo("X");} ?>
</td>
<td ><? if ($SEprofil[4][1]=="X") {echo("X");} ?>
</td>
<td ><? if ($SEprofil[4][2]=="X") {echo("X");} ?>
</td>
<td ><? if ($SEprofil[4][3]=="X") {echo("X");} ?>
</td>
<td ><? if ($SEprofil[4][4]=="X") {echo("X");} ?>
</td>
</tr>
<tr>
<td >Methodenkompetenz</td>
<td ><? if ($SEprofil[5][0]=="X") {echo("X");} ?>
</td>
<td ><? if ($SEprofil[5][1]=="X") {echo("X");} ?>
</td>
<td ><? if ($SEprofil[5][2]=="X") {echo("X");} ?>
</td>
<td ><? if ($SEprofil[5][3]=="X") {echo("X");} ?>
</td>
<td ><? if ($SEprofil[5][4]=="X") {echo("X");} ?>
</td>
</tr>
</table>
<svg width="400" height="252" >
<line x1="0" y1="0" x2="400" y2="0" style="stroke:rgb(255,0,0);stroke-width:2" />
<line x1="0" y1="36" x2="400" y2="36" style="stroke:rgb(255,0,0);stroke-width:2" />
<line x1="0" y1="72" x2="400" y2="72" style="stroke:rgb(255,0,0);stroke-width:2" />
<line x1="0" y1="108" x2="400" y2="108" style="stroke:rgb(255,0,0);stroke-width:2" />
<line x1="0" y1="144" x2="400" y2="144" style="stroke:rgb(255,0,0);stroke-width:2" />
<line x1="0" y1="180" x2="400" y2="180" style="stroke:rgb(255,0,0);stroke-width:2" />
<line x1="0" y1="216" x2="400" y2="216" style="stroke:rgb(255,0,0);stroke-width:2" />
<line x1="0" y1="252" x2="400" y2="252" style="stroke:rgb(255,0,0);stroke-width:2" />
<line x1="0" y1="0" x2="0" y2="252" style="stroke:rgb(255,0,0);stroke-width:2" />
<line x1="100" y1="0" x2="100" y2="252" style="stroke:rgb(255,0,0);stroke-width:2" />
<line x1="150" y1="0" x2="150" y2="252" style="stroke:rgb(255,0,0);stroke-width:2" />
<line x1="200" y1="0" x2="200" y2="252" style="stroke:rgb(255,0,0);stroke-width:2" />
<line x1="250" y1="0" x2="250" y2="252" style="stroke:rgb(255,0,0);stroke-width:2" />
<line x1="300" y1="0" x2="300" y2="252" style="stroke:rgb(255,0,0);stroke-width:2" />
<line x1="350" y1="0" x2="350" y2="252" style="stroke:rgb(255,0,0);stroke-width:2" />
<line x1="400" y1="0" x2="400" y2="252" style="stroke:rgb(255,0,0);stroke-width:2" />
<text font-size="10px" x="5" y="54" fill="black">Arbeitsverhalten</text>
<text font-size="10px" x="5" y="90" fill="black">Lernverhalten</text>
<text font-size="10px" x="5" y="126" fill="black">Sozialverhalten</text>
<text font-size="10px" x="5" y="162" fill="black">Fachkompetenz</text>
<text font-size="10px" x="5" y="198" fill="black">Personale Kompetenz</text>
<text font-size="10px" x="5" y="234" fill="black">Methodenkompetenz</text>
<text font-size="10px" x="125" y="18" fill="black">1</text>
<text font-size="10px" x="175" y="18" fill="black">2</text>
<text font-size="10px" x="225" y="18" fill="black">3</text>
<text font-size="10px" x="275" y="18" fill="black">4</text>
<text font-size="10px" x="325" y="18" fill="black">5</text>
<polyline
fill="none"
stroke="#0074d9"
stroke-width="3"
points="
<? echo(" ".$SEprofilSVG[0]*50+125); ?>,54
<? echo(" ".$SEprofilSVG[1]*50+125); ?>,90
<? echo(" ".$SEprofilSVG[2]*50+125); ?>,126
<? echo(" ".$SEprofilSVG[3]*50+125); ?>,162
<? echo(" ".$SEprofilSVG[4]*50+125); ?>,198
<? echo(" ".$SEprofilSVG[5]*50+125); ?>,234"/>
<circle cx="<? echo(" ".$SEprofilSVG[0]*50+125); ?>" cy="54" r="10" stroke="blue"; stroke-width="5" fill="white" />
<circle cx="<? echo(" ".$SEprofilSVG[1]*50+125); ?>" cy="90" r="10" stroke="blue"; stroke-width="5" fill="white" />
<circle cx="<? echo(" ".$SEprofilSVG[2]*50+125); ?>" cy="126" r="10" stroke="blue"; stroke-width="5" fill="white" />
<circle cx="<? echo(" ".$SEprofilSVG[3]*50+125); ?>" cy="162" r="10" stroke="blue"; stroke-width="5" fill="white" />
<circle cx="<? echo(" ".$SEprofilSVG[4]*50+125); ?>" cy="198" r="10" stroke="blue"; stroke-width="5" fill="white" />
<circle cx="<? echo(" ".$SEprofilSVG[5]*50+125); ?>" cy="234" r="10" stroke="blue"; stroke-width="5" fill="white" />
</svg>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Fremdeinschätzung</h3>
</div>
<div class="panel-body">
<p> </p>
<table class="table table-bordered">
<thead>
<th width="61%">Fremdeinschätzung</th>
<th width="0%" >1</th>
<th width="7%" >2</th>
<th width="7%" >3</th>
<th width="7%" >4</th>
<th width="18%" >5</th>
</thead></tr>
<tr>
<td >Arbeitsverhalten </td>
<td ><? if ($FEprofil[0][0]=="X") {echo("X");} ?>
</td>
<td ><? if ($FEprofil[0][1]=="X") {echo("X");} ?>
</td>
<td ><? if ($FEprofil[0][2]=="X") {echo("X");} ?>
</td>
<td ><? if ($FEprofil[0][3]=="X") {echo("X");} ?>
</td>
<td ><? if ($FEprofil[0][4]=="X") {echo("X"); } ?>
</td>
</tr>
<tr>
<td >Lernverhalten</td>
<td ><? if ($FEprofil[1][0]=="X") {echo("X"); } ?>
</td>
<td ><? if ($FEprofil[1][1]=="X") {echo("X");} ?>
</td>
<td ><? if ($FEprofil[1][2]=="X") {echo("X");} ?>
</td>
<td ><? if ($FEprofil[1][3]=="X") {echo("X");} ?>
</td>
<td ><? if ($FEprofil[1][4]=="X") {echo("X");} ?>
</td>
</tr>
<tr>
<td >Sozialverhalten</td>
<td ><? if ($FEprofil[2][0]=="X") {echo("X");} ?>
</td>
<td ><? if ($FEprofil[2][1]=="X") {echo("X");} ?>
</td>
<td ><? if ($FEprofil[2][2]=="X") {echo("X");} ?>
</td>
<td ><? if ($FEprofil[2][3]=="X") {echo("X");} ?>
</td>
<td ><? if ($FEprofil[2][4]=="X") {echo("X");} ?>
</td>
</tr>
<tr>
<td >Fachkompetenz</td>
<td ><? if ($FEprofil[3][0]=="X") {echo("X");} ?>
</td>
<td ><? if ($FEprofil[3][1]=="X") {echo("X");} ?>
</td>
<td ><? if ($FEprofil[3][2]=="X") {echo("X");} ?>
</td>
<td ><? if ($FEprofil[3][3]=="X") {echo("X");} ?>
</td>
<td ><? if ($FEprofil[3][4]=="X") {echo("X");} ?>
</td>
</tr>
<tr>
<td >Personale Kompetenz</td>
<td ><? if ($FEprofil[4][0]=="X") {echo("X");} ?>
</td>
<td ><? if ($FEprofil[4][1]=="X") {echo("X");} ?>
</td>
<td ><? if ($FEprofil[4][2]=="X") {echo("X");} ?>
</td>
<td ><? if ($FEprofil[4][3]=="X") {echo("X");} ?>
</td>
<td ><? if ($FEprofil[4][4]=="X") {echo("X");} ?>
</td>
</tr>
<tr>
<td >Methodenkompetenz</td>
<td ><? if ($FEprofil[5][0]=="X") {echo("X");} ?>
</td>
<td ><? if ($FEprofil[5][1]=="X") {echo("X");} ?>
</td>
<td ><? if ($FEprofil[5][2]=="X") {echo("X");} ?>
</td>
<td ><? if ($FEprofil[5][3]=="X") {echo("X");} ?>
</td>
<td ><? if ($FEprofil[5][4]=="X") {echo("X");} ?>
</td>
</tr>
</table>
<svg width="400" height="252" >
<line x1="0" y1="0" x2="400" y2="0" style="stroke:rgb(255,0,0);stroke-width:2" />
<line x1="0" y1="36" x2="400" y2="36" style="stroke:rgb(255,0,0);stroke-width:2" />
<line x1="0" y1="72" x2="400" y2="72" style="stroke:rgb(255,0,0);stroke-width:2" />
<line x1="0" y1="108" x2="400" y2="108" style="stroke:rgb(255,0,0);stroke-width:2" />
<line x1="0" y1="144" x2="400" y2="144" style="stroke:rgb(255,0,0);stroke-width:2" />
<line x1="0" y1="180" x2="400" y2="180" style="stroke:rgb(255,0,0);stroke-width:2" />
<line x1="0" y1="216" x2="400" y2="216" style="stroke:rgb(255,0,0);stroke-width:2" />
<line x1="0" y1="252" x2="400" y2="252" style="stroke:rgb(255,0,0);stroke-width:2" />
<line x1="0" y1="0" x2="0" y2="252" style="stroke:rgb(255,0,0);stroke-width:2" />
<line x1="100" y1="0" x2="100" y2="252" style="stroke:rgb(255,0,0);stroke-width:2" />
<line x1="150" y1="0" x2="150" y2="252" style="stroke:rgb(255,0,0);stroke-width:2" />
<line x1="200" y1="0" x2="200" y2="252" style="stroke:rgb(255,0,0);stroke-width:2" />
<line x1="250" y1="0" x2="250" y2="252" style="stroke:rgb(255,0,0);stroke-width:2" />
<line x1="300" y1="0" x2="300" y2="252" style="stroke:rgb(255,0,0);stroke-width:2" />
<line x1="350" y1="0" x2="350" y2="252" style="stroke:rgb(255,0,0);stroke-width:2" />
<line x1="400" y1="0" x2="400" y2="252" style="stroke:rgb(255,0,0);stroke-width:2" />
<text font-size="10px" x="5" y="54" fill="black">Arbeitsverhalten</text>
<text font-size="10px" x="5" y="90" fill="black">Lernverhalten</text>
<text font-size="10px" x="5" y="126" fill="black">Sozialverhalten</text>
<text font-size="10px" x="5" y="162" fill="black">Fachkompetenz</text>
<text font-size="10px" x="5" y="198" fill="black">Personale Kompetenz</text>
<text font-size="10px" x="5" y="234" fill="black">Methodenkompetenz</text>
<text font-size="10px" x="125" y="18" fill="black">1</text>
<text font-size="10px" x="175" y="18" fill="black">2</text>
<text font-size="10px" x="225" y="18" fill="black">3</text>
<text font-size="10px" x="275" y="18" fill="black">4</text>
<text font-size="10px" x="325" y="18" fill="black">5</text>
<polyline
fill="none"
stroke="#0074d9"
stroke-width="3"
points="
<? echo(" ".$FEprofilSVG[0]*50+125); ?>,54
<? echo(" ".$FEprofilSVG[1]*50+125); ?>,90
<? echo(" ".$FEprofilSVG[2]*50+125); ?>,126
<? echo(" ".$FEprofilSVG[3]*50+125); ?>,162
<? echo(" ".$FEprofilSVG[4]*50+125); ?>,198
<? echo(" ".$FEprofilSVG[5]*50+125); ?>,234"/>
<circle cx="<? echo(" ".$FEprofilSVG[0]*50+125); ?>" cy="54" r="10" stroke="blue"; stroke-width="5" fill="white" />
<circle cx="<? echo(" ".$FEprofilSVG[1]*50+125); ?>" cy="90" r="10" stroke="blue"; stroke-width="5" fill="white" />
<circle cx="<? echo(" ".$FEprofilSVG[2]*50+125); ?>" cy="126" r="10" stroke="blue"; stroke-width="5" fill="white" />
<circle cx="<? echo(" ".$FEprofilSVG[3]*50+125); ?>" cy="162" r="10" stroke="blue"; stroke-width="5" fill="white" />
<circle cx="<? echo(" ".$FEprofilSVG[4]*50+125); ?>" cy="198" r="10" stroke="blue"; stroke-width="5" fill="white" />
<circle cx="<? echo(" ".$FEprofilSVG[5]*50+125); ?>" cy="234" r="10" stroke="blue"; stroke-width="5" fill="white" />
</svg>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Korrelation / Übereinstimmung</h3>
</div>
<div class="panel-body" style="text-align: justify">
<p> </p>
<p>Korrelation der Rohwerte.<? echo(" ".round($korrelation,2)); ?></p>
<p>
<?
if ($korrelation >= 0.8) {
echo "<br>Die Fremdeinschätzung und Selbsteinschätzung weisen eine starke Korrelation auf.<br>";
} elseif ($korrelation >= 0.5) {
echo "<br>Die Fremdeinschätzung und Selbsteinschätzung weisen eine moderate Korrelation auf.<br>";
} elseif ($korrelation >= 0.3) {
echo "<br>Die Fremdeinschätzung und Selbsteinschätzung weisen eine schwache Korrelation auf.<br>";
} else {
echo "<br>Die Fremdeinschätzung und Selbsteinschätzung weisen keine signifikante Korrelation auf.<br>";
}
?>
</p>
<p>Von der Korrelation unabhängige Übereinstimmung der Rohwerte <? echo(" ".round($UebereinstimmungSEFE,2)."%"); ?>
</p>
<?
// Umgangssprachliche Auswertung
echo "<br>Selbsteinschätzung im Verhältnis zur Vergleichsgruppe:<br>";
$aussagen = array(
"Arbeitsverhalten" => array(
0 => "Du schätzt dein Arbeitsverhalten als weit unterdurchschnittlich ein.",
1 => "Du schätzt dein Arbeitsverhalten als unterdurchschnittlich ein.",
2 => "Du schätzt dein Arbeitsverhalten als durchschnittlich ein.",
3 => "Du schätzt dein Arbeitsverhalten als überdurchschnittlich ein.",
4 => "Du schätzt dein Arbeitsverhalten als weit überdurchschnittlich ein."
),
"Lernverhalten" => array(
0 => "Du schätzt dein Lernverhalten als weit unterdurchschnittlich ein.",
1 => "Du schätzt dein Lernverhalten als unterdurchschnittlich ein.",
2 => "Du schätzt dein Lernverhalten als durchschnittlich ein.",
3 => "Du schätzt dein Lernverhalten als überdurchschnittlich ein.",
4 => "Du schätzt dein Lernverhalten als weit überdurchschnittlich ein."
),
"Sozialverhalten" => array(
0 => "Du schätzt dein Sozialverhalten als weit unterdurchschnittlich ein.",
1 => "Du schätzt dein Sozialverhalten als unterdurchschnittlich ein.",
2 => "Du schätzt dein Sozialverhalten als durchschnittlich ein.",
3 => "Du schätzt dein Sozialverhalten als überdurchschnittlich ein.",
4 => "Du schätzt dein Sozialverhalten als weit überdurchschnittlich ein."
),
"Fachkompetenz" => array(
0 => "Du schätzt deine Fachkompetenz als weit unterdurchschnittlich ein.",
1 => "Du schätzt deine Fachkompetenz als unterdurchschnittlich ein.",
2 => "Du schätzt deine Fachkompetenz als durchschnittlich ein.",
3 => "Du schätzt deine Fachkompetenz als überdurchschnittlich ein.",
4 => "Du schätzt deine Fachkompetenz als weit überdurchschnittlich ein."
),
"Personale Kompetenz" => array(
0 => "Du schätzt deine personale Kompetenz als weit unterdurchschnittlich ein.",
1 => "Du schätzt deine personale Kompetenz als unterdurchschnittlich ein.",
2 => "Du schätzt deine personale Kompetenz als durchschnittlich ein.",
3 => "Du schätzt deine personale Kompetenz als überdurchschnittlich ein.",
4 => "Du schätzt deine personale Kompetenz als weit überdurchschnittlich ein."
),
"Methodenkompetenz" => array(
0 => "Du schätzt deine Methodenkompetenz als weit unterdurchschnittlich ein.",
1 => "Du schätzt deine Methodenkompetenz als unterdurchschnittlich ein.",
2 => "Du schätzt deine Methodenkompetenz als durchschnittlich ein.",
3 => "Du schätzt deine Methodenkompetenz als überdurchschnittlich ein.",
4 => "Du schätzt deine Methodenkompetenz als weit überdurchschnittlich ein."
)
);
foreach ($SEprofil as $rowIndex => $row) {
foreach ($row as $colIndex => $value) {
if ($value === "X") {
$kompetenz = array_keys($aussagen)[$rowIndex];
$aussage = $aussagen[$kompetenz][$colIndex];
echo "$aussage\n";
}
}
}
// Umgangssprachliche Auswertung
echo "<br><br> Fremdeinschätzung im Verhältnis zur Vergleichsgruppe: <br>";
$aussagen = array(
"Arbeitsverhalten" => array(
0 => "Dein Arbeitsverhalten wird als weit unterdurchschnittlich eingeschätzt.",
1 => "Dein Arbeitsverhalten wird als unterdurchschnittlich eingeschätzt.",
2 => "Dein Arbeitsverhalten wird als durchschnittlich eingeschätzt.",
3 => "Dein Arbeitsverhalten wird als überdurchschnittlich eingeschätzt.",
4 => "Dein Arbeitsverhalten wird als weit überdurchschnittlich eingeschätzt."
),
"Lernverhalten" => array(
0 => "Dein Lernverhalten wird als weit unterdurchschnittlich eingeschätzt.",
1 => "Dein Lernverhalten wird als unterdurchschnittlich eingeschätzt.",
2 => "Dein Lernverhalten wird als durchschnittlich eingeschätzt.",
3 => "Dein Lernverhalten wird als überdurchschnittlich eingeschätzt.",
4 => "Dein Lernverhalten wird als weit überdurchschnittlich eingeschätzt."
),
"Sozialverhalten" => array(
0 => "Dein Sozialverhalten wird als weit unterdurchschnittlich eingeschätzt.",
1 => "Dein Sozialverhalten wird als unterdurchschnittlich eingeschätzt.",
2 => "Dein Sozialverhalten wird als durchschnittlich eingeschätzt.",
3 => "Dein Sozialverhalten wird als überdurchschnittlich eingeschätzt.",
4 => "Dein Sozialverhalten wird als weit überdurchschnittlich eingeschätzt."
),
"Fachkompetenz" => array(
0 => "Deine Fachkompetenz wird als weit unterdurchschnittlich eingeschätzt.",
1 => "Deine Fachkompetenz wird als unterdurchschnittlich eingeschätzt.",
2 => "Deine Fachkompetenz wird als durchschnittlich eingeschätzt.",
3 => "Deine Fachkompetenz wird als überdurchschnittlich eingeschätzt.",
4 => "Deine Fachkompetenz wird als weit überdurchschnittlich eingeschätzt."
),
"Personale Kompetenz" => array(
0 => "Deine personale Kompetenz wird als weit unterdurchschnittlich eingeschätzt.",
1 => "Deine personale Kompetenz wird als unterdurchschnittlich eingeschätzt.",
2 => "Deine personale Kompetenz wird als durchschnittlich eingeschätzt.",
3 => "Deine personale Kompetenz wird als überdurchschnittlich eingeschätzt.",
4 => "Deine personale Kompetenz wird als weit überdurchschnittlich eingeschätzt."
),
"Methodenkompetenz" => array(
0 => "Deine Methodenkompetenz wird als weit unterdurchschnittlich eingeschätzt.",
1 => "Deine Methodenkompetenz wird als unterdurchschnittlich eingeschätzt.",
2 => "Deine Methodenkompetenz wird als durchschnittlich eingeschätzt.",
3 => "Deine Methodenkompetenz wird als überdurchschnittlich eingeschätzt.",
4 => "Deine Methodenkompetenz wird als weit überdurchschnittlich eingeschätzt."
),
);
foreach ($FEprofil as $index => $row) {
echo "\n" . ucfirst(array_keys($aussagen)[$index]) . ":\n";
foreach ($row as $column => $value) {
if ($value === "X") {
echo $aussagen[array_keys($aussagen)[$index]][$column] . "\n";
}
}
}
echo "<br><br>";