0) $amount= 5-(($len1+$len2)/2); if ($loveCount> 2) $amount= 10-(($len1+$len2)/2); if ($loveCount> 4) $amount= 20-(($len1+$len2)/2); if ($loveCount> 6) $amount= 30-(($len1+$len2)/2); if ($loveCount> 8) $amount= 40-(($len1+$len2)/2); if ($loveCount>10) $amount= 50-(($len1+$len2)/2); if ($loveCount>12) $amount= 60-(($len1+$len2)/2); if ($loveCount>14) $amount= 70-(($len1+$len2)/2); if ($loveCount>16) $amount= 80-(($len1+$len2)/2); if ($loveCount>18) $amount= 90-(($len1+$len2)/2); if ($loveCount>20) $amount=100-(($len1+$len2)/2); if ($loveCount>22) $amount=110-(($len1+$len2)/2); if ($amount < 0) $amount= 0; if ($amount >100) $amount=100; return intval($amount); } function GetRelation($rel, $d1, $m1, $d2, $m2) { global $LOVE, $FRIEND, $WORK, $relation, $signe_day, $signe_len, $signe_month, $total_days, $signe_start; if (($d1 == 11 && $m1 == 9 && $d2 == 22 && $m2 == 8) || ($d1 == 22 && $m1 == 8 && $d2 == 11 && $m2 == 9)) { if ($rel == $LOVE) return 300; if ($rel == $FRIEND) return 280; return 288; } $s1 = GetSigne($d1, $m1); $s2 = GetSigne($d2, $m2); $td1 = $total_days[$m1] + $d1; // total days to d1 m1 $td2 = $total_days[$m2] + $d2; $diff1 = $td1 - ($signe_start[$s1] + intval($signe_len[$s1] / 2)); $diff2 = $td2 - ($signe_start[$s2] + intval($signe_len[$s2] / 2)); if ($diff1 < -100) $diff1 = ($diff1 + 366) % 366; if ($diff2 < -100) $diff2 = ($diff2 + 366) % 366; if ($diff1 > 0) { // average with next sign $p1 = intval(100 * ($signe_len[$s1] / 2 - $diff1) / ($signe_len[$s1] / 2)); $s12 = $s1 % 12 + 1; } else if ($diff1 < 0) { // average with previous sign $p1 = intval(100 * ($signe_len[$s1] / 2 + $diff1) / ($signe_len[$s1] / 2)); $s12 = $s1 - 1; if ($s12 == 0) $s12 = 12; } else { $p1 = 100; $s12 = $s1; } if ($diff2 > 0) { // average with next sign $p2 = intval(100 * ($signe_len[$s2] / 2 - $diff2) / ($signe_len[$s2] / 2)); $s22 = $s2 % 12 + 1; } else if ($diff2 < 0) { // average with previous sign $p2 = intval(100 * ($signe_len[$s2] / 2 + $diff2) / ($signe_len[$s2] / 2)); $s22 = $s2 - 1; if ($s22 == 0) $s22 = 12; } else { $p2 = 100; $s22 = $s2; } $r1 = Relation($rel, $s1, $s2); $r2 = Relation($rel, $s12, $s2); $r3 = Relation($rel, $s1, $s22); //$r4 = Relation($rel, $s12, $s22); return ($r1 * ($p1) / 100 + $r2 * (100 - $p1) / 100 + $r3 * (100 - $p2) / 100 + $r1 * ($p2) / 100) / 2; } function Relation($rel, $s1, $s2) { global $relation; if ($s1 > $s2) return $relation[$rel][$s2][$s1]; return $relation[$rel][$s1][$s2]; } function GetSigne($d, $m) { switch ($m) { case 3 : // mars if ($d >= 21) return 1; // Bélier return 12; // Poisson case 4 : // avril if ($d >= 21) return 2; // Taureau return 1; // Bélier case 5 : // mai if ($d >= 21) return 3; // Gemeaux return 2; // Taureau case 6 : if ($d >= 22) return 4; // Cancer return 3; // Gemaux case 7 : if ($d >= 23) return 5; // Lion return 4; // Cancer case 8 : if ($d >= 23) return 6; // Vierge return 5; // Lion case 9 : if ($d >= 23) return 7; // Balance return 6; // Vierge case 10 : if ($d >= 23) return 8; // Scorpion return 7; // Balance case 11 : if ($d >= 22) return 9; // Sagittaire return 8; // Scorpion case 12 : if ($d >= 21) return 10; // Capricorne return 9; // Sagittaire case 1 : if ($d >= 20) return 11; // Verseau return 10; // Capricorne case 2 : if ($d >= 19) return 12; // Poisson return 11; // Verseau } } $month = array(); if ($lg == "fr") { $month[1] = 'Janvier'; $month[2] = 'Février'; $month[3] = 'Mars'; $month[4] = 'Avril'; $month[5] = 'Mai'; $month[6] = 'Juin'; $month[7] = 'Juillet'; $month[8] = 'Août'; $month[9] = 'Septembre'; $month[10] = 'Octobre'; $month[11] = 'Novembre'; $month[12] = 'Décembre'; } else if ($lg == "en") { $month[1] = 'January'; $month[2] = 'February'; $month[3] = 'March'; $month[4] = 'April'; $month[5] = 'May'; $month[6] = 'June'; $month[7] = 'July'; $month[8] = 'August'; $month[9] = 'September'; $month[10] = 'October'; $month[11] = 'November'; $month[12] = 'December'; } else if ($lg == "es") { $month[1] = 'Enero'; $month[2] = 'Febrero'; $month[3] = 'Marzo'; $month[4] = 'Abril'; $month[5] = 'Mayo'; $month[6] = 'Junio'; $month[7] = 'Julio'; $month[8] = 'Agosta'; $month[9] = 'Septiembre'; $month[10] = 'Octubre'; $month[11] = 'Noviembre'; $month[12] = 'Diciembre'; } $relation = array(); $LOVE = 0; $FRIEND = 1; $WORK = 2; /* ** LOVE */ $relation[$LOVE][1][1] = 275; // BELIER $relation[$LOVE][1][2] = 150; $relation[$LOVE][1][3] = 270; $relation[$LOVE][1][4] = 120; $relation[$LOVE][1][5] = 280; $relation[$LOVE][1][6] = 80; $relation[$LOVE][1][7] = 280; $relation[$LOVE][1][8] = 80; $relation[$LOVE][1][9] = 265; $relation[$LOVE][1][10] = 40; $relation[$LOVE][1][11] = 220; $relation[$LOVE][1][12] = 60; $relation[$LOVE][2][2] = 190; // TAUREAU $relation[$LOVE][2][3] = 109; $relation[$LOVE][2][4] = 282; $relation[$LOVE][2][5] = 133; $relation[$LOVE][2][6] = 260; $relation[$LOVE][2][7] = 70; $relation[$LOVE][2][8] = 260; $relation[$LOVE][2][9] = 150; $relation[$LOVE][2][10] = 260; $relation[$LOVE][2][11] = 60; $relation[$LOVE][2][12] = 275; $relation[$LOVE][3][3] = 250; // GEMEAUX $relation[$LOVE][3][4] = 150; $relation[$LOVE][3][5] = 270; $relation[$LOVE][3][6] = 90; $relation[$LOVE][3][7] = 290; $relation[$LOVE][3][8] = 93; $relation[$LOVE][3][9] = 280; $relation[$LOVE][3][10] = 130; $relation[$LOVE][3][11] = 290; $relation[$LOVE][3][12] = 120; $relation[$LOVE][4][4] = 245; // CANCER $relation[$LOVE][4][5] = 70; $relation[$LOVE][4][6] = 280; $relation[$LOVE][4][7] = 100; $relation[$LOVE][4][8] = 270; $relation[$LOVE][4][9] = 40; $relation[$LOVE][4][10] = 260; $relation[$LOVE][4][11] = 70; $relation[$LOVE][4][12] = 294; $relation[$LOVE][5][5] = 260; // LION $relation[$LOVE][5][6] = 250; $relation[$LOVE][5][7] = 280; $relation[$LOVE][5][8] = 100; $relation[$LOVE][5][9] = 285; $relation[$LOVE][5][10] = 40; $relation[$LOVE][5][11] = 270; $relation[$LOVE][5][12] = 55; $relation[$LOVE][6][6] = 250; // VIERGE $relation[$LOVE][6][7] = 100; $relation[$LOVE][6][8] = 275; $relation[$LOVE][6][9] = 70; $relation[$LOVE][6][10] = 285; $relation[$LOVE][6][11] = 140; $relation[$LOVE][6][12] = 260; $relation[$LOVE][7][7] = 280; // BALANCE $relation[$LOVE][7][8] = 30; $relation[$LOVE][7][9] = 280; $relation[$LOVE][7][10] = 30; $relation[$LOVE][7][11] = 275; $relation[$LOVE][7][12] = 50; $relation[$LOVE][8][8] = 230; // SCORPION $relation[$LOVE][8][9] = 15; $relation[$LOVE][8][10] = 270; $relation[$LOVE][8][11] = 15; $relation[$LOVE][8][12] = 280; $relation[$LOVE][9][9] = 290; // SAGITTAIRE $relation[$LOVE][9][10] = 90; $relation[$LOVE][9][11] = 275; $relation[$LOVE][9][12] = 89; $relation[$LOVE][10][10] = 220; // CAPRICORNE $relation[$LOVE][10][11] = 80; $relation[$LOVE][10][12] = 270; $relation[$LOVE][11][11] = 280; // VERSEAU $relation[$LOVE][11][12] = 99; $relation[$LOVE][12][12] = 255; // POISSON /******************* ******************** ** FRIENDSHIP ****** ******************** ********************/ $relation[$FRIEND][1][1] = 150; // BELIER $relation[$FRIEND][1][2] = 120; $relation[$FRIEND][1][3] = 250; $relation[$FRIEND][1][4] = 100; $relation[$FRIEND][1][5] = 200; $relation[$FRIEND][1][6] = 40; $relation[$FRIEND][1][7] = 270; $relation[$FRIEND][1][8] = 200; $relation[$FRIEND][1][9] = 290; $relation[$FRIEND][1][10] = 190; $relation[$FRIEND][1][11] = 250; $relation[$FRIEND][1][12] = 50; $relation[$FRIEND][2][2] = 170; // TAUREAU $relation[$FRIEND][2][3] = 80; $relation[$FRIEND][2][4] = 220; $relation[$FRIEND][2][5] = 90; $relation[$FRIEND][2][6] = 250; $relation[$FRIEND][2][7] = 70; $relation[$FRIEND][2][8] = 240; $relation[$FRIEND][2][9] = 68; $relation[$FRIEND][2][10] = 250; $relation[$FRIEND][2][11] = 29; $relation[$FRIEND][2][12] = 270; $relation[$FRIEND][3][3] = 200; // GEMEAUX $relation[$FRIEND][3][4] = 50; $relation[$FRIEND][3][5] = 200; $relation[$FRIEND][3][6] = 50; $relation[$FRIEND][3][7] = 295; $relation[$FRIEND][3][8] = 150; $relation[$FRIEND][3][9] = 270; $relation[$FRIEND][3][10] = 33; $relation[$FRIEND][3][11] = 230; $relation[$FRIEND][3][12] = 69; $relation[$FRIEND][4][4] = 149; // CANCER $relation[$FRIEND][4][5] = 35; $relation[$FRIEND][4][6] = 285; $relation[$FRIEND][4][7] = 80; $relation[$FRIEND][4][8] = 220; $relation[$FRIEND][4][9] = 40; $relation[$FRIEND][4][10] = 290; $relation[$FRIEND][4][11] = 19; $relation[$FRIEND][4][12] = 290; $relation[$FRIEND][5][5] = 180; // LION $relation[$FRIEND][5][6] = 160; $relation[$FRIEND][5][7] = 280; $relation[$FRIEND][5][8] = 170; $relation[$FRIEND][5][9] = 280; $relation[$FRIEND][5][10] = 30; $relation[$FRIEND][5][11] = 280; $relation[$FRIEND][5][12] = 50; $relation[$FRIEND][6][6] = 260; // VIERGE $relation[$FRIEND][6][7] = 70; $relation[$FRIEND][6][8] = 210; $relation[$FRIEND][6][9] = 30; $relation[$FRIEND][6][10] = 250; $relation[$FRIEND][6][11] = 190; $relation[$FRIEND][6][12] = 280; $relation[$FRIEND][7][7] = 270; // BALANCE $relation[$FRIEND][7][8] = 20; $relation[$FRIEND][7][9] = 270; $relation[$FRIEND][7][10] = 70; $relation[$FRIEND][7][11] = 289; $relation[$FRIEND][7][12] = 200; $relation[$FRIEND][8][8] = 260; // SCORPION $relation[$FRIEND][8][9] = 10; $relation[$FRIEND][8][10] = 280; $relation[$FRIEND][8][11] = 60; $relation[$FRIEND][8][12] = 140; $relation[$FRIEND][9][9] = 290; // SAGITTAIRE $relation[$FRIEND][9][10] = 70; $relation[$FRIEND][9][11] = 265; $relation[$FRIEND][9][12] = 50; $relation[$FRIEND][10][10] = 200; // CAPRICORNE $relation[$FRIEND][10][11] = 40; $relation[$FRIEND][10][12] = 267; $relation[$FRIEND][11][11] = 290; // VERSEAU $relation[$FRIEND][11][12] = 200; $relation[$FRIEND][12][12] = 269; // POISSON /******************* ******************** ** WORK ************ ******************** ********************/ $relation[$WORK][1][1] = 295; // BELIER $relation[$WORK][1][2] = 210; $relation[$WORK][1][3] = 280; $relation[$WORK][1][4] = 10; $relation[$WORK][1][5] = 200; $relation[$WORK][1][6] = 130; $relation[$WORK][1][7] = 282; $relation[$WORK][1][8] = 120; $relation[$WORK][1][9] = 285; $relation[$WORK][1][10] = 90; $relation[$WORK][1][11] = 260; $relation[$WORK][1][12] = 19; $relation[$WORK][2][2] = 170; // TAUREAU $relation[$WORK][2][3] = 70; $relation[$WORK][2][4] = 182; $relation[$WORK][2][5] = 24; $relation[$WORK][2][6] = 290; $relation[$WORK][2][7] = 20; $relation[$WORK][2][8] = 295; $relation[$WORK][2][9] = 150; $relation[$WORK][2][10] = 292; $relation[$WORK][2][11] = 30; $relation[$WORK][2][12] = 270; $relation[$WORK][3][3] = 143; // GEMEAUX $relation[$WORK][3][4] = 30; $relation[$WORK][3][5] = 253; $relation[$WORK][3][6] = 120; $relation[$WORK][3][7] = 282; $relation[$WORK][3][8] = 10; $relation[$WORK][3][9] = 240; $relation[$WORK][3][10] = 30; $relation[$WORK][3][11] = 270; $relation[$WORK][3][12] = 55; $relation[$WORK][4][4] = 165; // CANCER $relation[$WORK][4][5] = 30; $relation[$WORK][4][6] = 240; $relation[$WORK][4][7] = 40; $relation[$WORK][4][8] = 230; $relation[$WORK][4][9] = 130; $relation[$WORK][4][10] = 270; $relation[$WORK][4][11] = 22; $relation[$WORK][4][12] = 286; $relation[$WORK][5][5] = 200; // LION $relation[$WORK][5][6] = 200; $relation[$WORK][5][7] = 260; $relation[$WORK][5][8] = 160; $relation[$WORK][5][9] = 289; $relation[$WORK][5][10] = 10; $relation[$WORK][5][11] = 282; $relation[$WORK][5][12] = 280; $relation[$WORK][6][6] = 260; // VIERGE $relation[$WORK][6][7] = 250; $relation[$WORK][6][8] = 245; $relation[$WORK][6][9] = 140; $relation[$WORK][6][10] = 295; $relation[$WORK][6][11] = 199; $relation[$WORK][6][12] = 272; $relation[$WORK][7][7] = 287; // BALANCE $relation[$WORK][7][8] = 20; $relation[$WORK][7][9] = 200; $relation[$WORK][7][10] = 60; $relation[$WORK][7][11] = 155; $relation[$WORK][7][12] = 170; $relation[$WORK][8][8] = 50; // SCORPION $relation[$WORK][8][9] = 45; $relation[$WORK][8][10] = 290; $relation[$WORK][8][11] = 20; $relation[$WORK][8][12] = 230; $relation[$WORK][9][9] = 279; // SAGITTAIRE $relation[$WORK][9][10] = 150; $relation[$WORK][9][11] = 260; $relation[$WORK][9][12] = 32; $relation[$WORK][10][10] = 280; // CAPRICORNE $relation[$WORK][10][11] = 160; $relation[$WORK][10][12] = 230; $relation[$WORK][11][11] = 199; // VERSEAU $relation[$WORK][11][12] = 12; $relation[$WORK][12][12] = 265; // POISSON /* $sum = 0; $iter = 0; for ($i = 1 ; $i <= 12; $i++) { for ($j = $i; $j <= 12; $j++) { //echo '$relation['.$i.']['.$j.'] = 0;
'; $sum += $relation[$LOVE][$i][$j]; $iter++; } //echo '
'; } echo ($sum / $iter) / 300; exit; */ ?> LoveMachine : Love Compatibility by Astrological signs or love test by names

Love compatibility by names or astrological signs : The powerfull LoveMachine computes Synastry in a second. The comparison of two people\'s birth chart in astrology is called Synastry. The charts are compared to see what relation one person\'s planets have to the other. This science can determine the degree of love, friendship and professionnal rank between two persons. Netherless, these results are just a guide, not an absolute truth... Many numerologists and parapsychologists affirm that the first name influences the life of an individual. Its reactions, its character, its relations, and even its future… Thanks to the work of the mathematicians, the LoveMachine can calculate the influence of a first name on all these things. Love, friendship and professional life depend largely on these parameters. Netherless, only you and your heard can make it true! Problem with your sexual relationship ? Do the sexual compatibility test !

Love compatibility by names or astrological signs : The powerfull LoveMachine computes Synastry in a second. The comparison of two people\'s birth chart in astrology is called Synastry. The charts are compared to see what relation one person\'s planets have to the other. This science can determine the degree of love, friendship and professionnal rank between two persons. Netherless, these results are just a guide, not an absolute truth... Many numerologists and parapsychologists affirm that the first name influences the life of an individual. Its reactions, its character, its relations, and even its future… Thanks to the work of the mathematicians, the LoveMachine can calculate the influence of a first name on all these things. Love, friendship and professional life depend largely on these parameters. Netherless, only you and your heard can make it true! Problem with your sexual relationship ? Do the sexual compatibility test !


Résultat de compatibilité

Love compatibility by names or astrological signs : The powerfull LoveMachine computes Synastry in a second. The comparison of two people\'s birth chart in astrology is called Synastry. The charts are compared to see what relation one person\'s planets have to the other. This science can determine the degree of love, friendship and professionnal rank between two persons. Netherless, these results are just a guide, not an absolute truth... Many numerologists and parapsychologists affirm that the first name influences the life of an individual. Its reactions, its character, its relations, and even its future… Thanks to the work of the mathematicians, the LoveMachine can calculate the influence of a first name on all these things. Love, friendship and professional life depend largely on these parameters. Netherless, only you and your heard can make it true! Problem with your sexual relationship ? Do the sexual compatibility test !

 

 


 
Contact | © 2011
next poker school : poker probability calculator and poker lessons astromates : compatibilité prénoms, astrologie, amour, sex