plas71k

wmccfonk.php decoded - free version

Nov 23rd, 2012
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 29.14 KB | None | 0 0
  1. <?php
  2. function yas($y)
  3. {
  4.     $yas = date("Y-m-d") - $y;
  5.     return $yas;
  6. }
  7.  
  8. function form($getpost)
  9. {
  10.     $gelen = strip_tags(mysql_real_escape_string($getpost));
  11.     return $gelen;
  12. }
  13.  
  14. function mailkontrol($email)
  15. {
  16.     return filter_var($email, FILTER_VALIDATE_EMAIL);
  17. }
  18.  
  19. function sef($temizle)
  20. {
  21.     $tr   = array(
  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.     $en   = array(
  64.         "C",
  65.         "c",
  66.         "O",
  67.         "o",
  68.         "G",
  69.         "g",
  70.         "U",
  71.         "u",
  72.         "I",
  73.         "i",
  74.         "S",
  75.         "s",
  76.         "U",
  77.         "u",
  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.     $link = str_replace($tr, $en, $temizle);
  106.     return $link;
  107. }
  108.  
  109. function cinsiyet($i)
  110. {
  111.     switch ($i) {
  112.         case 1:
  113.             $cins = "Erkek";
  114.             break;
  115.         case 2:
  116.             $cins = "Kadın";
  117.             break;
  118.         case 3:
  119.             $cins = "Lezbiyen";
  120.             break;
  121.         case 4:
  122.             $cins = "Çift";
  123.             break;
  124.         case 5:
  125.             $cins = "Gay";
  126.             break;
  127.         case 6:
  128.             $cins = "Travesti";
  129.     }
  130.     return $cins;
  131. }
  132.  
  133. function medenidurum($i)
  134. {
  135.     switch ($i) {
  136.         case 1:
  137.             $medeni = "Bekar";
  138.             break;
  139.         case 2:
  140.             $medeni = "Nişanlı";
  141.             break;
  142.         case 3:
  143.             $medeni = "Evli";
  144.             break;
  145.         case 4:
  146.             $medeni = "Dul";
  147.             break;
  148.         case 5:
  149.             $medeni = "Boşanmış";
  150.             break;
  151.         case 6:
  152.             $medeni = "Ayrı Yaşıyor";
  153.             break;
  154.         case 7:
  155.             $medeni = "İlişkisi Var";
  156.     }
  157.     return $medeni;
  158. }
  159.  
  160. function mesajmedeni($i)
  161. {
  162.     switch ($i) {
  163.         case 1:
  164.             $medeni = "bekar";
  165.             break;
  166.         case 2:
  167.             $medeni = "nişanlı";
  168.             break;
  169.         case 3:
  170.             $medeni = "evli";
  171.             break;
  172.         case 4:
  173.             $medeni = "dul";
  174.             break;
  175.         case 5:
  176.             $medeni = "boşanmış";
  177.             break;
  178.         case 6:
  179.             $medeni = "ayrı yaşıyor";
  180.             break;
  181.         case 7:
  182.             $medeni = "ilişkisi var";
  183.     }
  184.     return $medeni;
  185. }
  186.  
  187. function burc($ayy, $gunn)
  188. {
  189.     $ay  = $ayy;
  190.     $gun = $gunn;
  191.     if ($ay == 12 && 23 <= $gun || $ay == 1 && $gun <= 20) {
  192.         $site = file_get_contents("http://www.muneccim.com/gunluk_fal/bugun.asp?burc=10");
  193.         preg_match_all("#Narrow\"><strong><big>(.*?)</big></strong></font>#si", $site, $bsonuc);
  194.         $burcu = iconv("iso-8859-9", "utf-8", form($bsonuc[1][0]));
  195.         echo "<p style=\"margin:0;padding:0;text-align:center;font:bold 10pt 'trebuchet ms';\">Oğlak Burcu</p><p style=\"margin:0;padding:3px 17px 7px 7px;text-align:justify;font:normal 8pt tahoma;color:#333;\">" . $burcu . "</p>";
  196.     }
  197.     if ($ay == 1 && 21 <= $gun || $ay == 2 && $gun <= 19) {
  198.         $site = file_get_contents("http://www.muneccim.com/gunluk_fal/bugun.asp?burc=11");
  199.         preg_match_all("#Narrow\"><strong><big>(.*?)</big></strong></font>#si", $site, $bsonuc);
  200.         $burcu = iconv("iso-8859-9", "utf-8", form($bsonuc[1][0]));
  201.         echo "<p style=\"margin:0;padding:0;text-align:center;font:bold 10pt 'trebuchet ms';\">Kova Burcu</p><p style=\"margin:0;padding:3px 17px 7px 7px;text-align:justify;font:normal 8pt tahoma;color:#333;\">" . $burcu . "</p>";
  202.     }
  203.     if ($ay == 2 && 20 <= $gun || $ay == 3 && $gun <= 20) {
  204.         $site = file_get_contents("http://www.muneccim.com/gunluk_fal/bugun.asp?burc=12");
  205.         preg_match_all("#Narrow\"><strong><big>(.*?)</big></strong></font>#si", $site, $bsonuc);
  206.         $burcu = iconv("iso-8859-9", "utf-8", form($bsonuc[1][0]));
  207.         echo "<p style=\"margin:0;padding:0;text-align:center;font:bold 10pt 'trebuchet ms';\">Balık Burcu</p><p style=\"margin:0;padding:3px 17px 7px 7px;text-align:justify;font:normal 8pt tahoma;color:#333;\">" . $burcu . "</p>";
  208.     }
  209.     if ($ay == 3 && 21 <= $gun || $ay == 4 && $gun <= 20) {
  210.         $site = file_get_contents("http://www.muneccim.com/gunluk_fal/bugun.asp?burc=1");
  211.         preg_match_all("#Narrow\"><strong><big>(.*?)</big></strong></font>#si", $site, $bsonuc);
  212.         $burcu = iconv("iso-8859-9", "utf-8", form($bsonuc[1][0]));
  213.         echo "<p style=\"margin:0;padding:0;text-align:center;font:bold 10pt 'trebuchet ms';\">Koç Burcu</p><p style=\"margin:0;padding:3px 17px 7px 7px;text-align:justify;font:normal 8pt tahoma;color:#333;\">" . $burcu . "</p>";
  214.     }
  215.     if ($ay == 4 && 21 <= $gun || $ay == 5 && $gun <= 21) {
  216.         $site = file_get_contents("http://www.muneccim.com/gunluk_fal/bugun.asp?burc=2");
  217.         preg_match_all("#Narrow\"><strong><big>(.*?)</big></strong></font>#si", $site, $bsonuc);
  218.         $burcu = iconv("iso-8859-9", "utf-8", form($bsonuc[1][0]));
  219.         echo "<p style=\"margin:0;padding:0;text-align:center;font:bold 10pt 'trebuchet ms';\">Boğa Burcu</p><p style=\"margin:0;padding:3px 17px 7px 7px;text-align:justify;font:normal 8pt tahoma;color:#333;\">" . $burcu . "</p>";
  220.     }
  221.     if ($ay == 5 && 22 <= $gun || $ay == 6 && $gun <= 21) {
  222.         $site = file_get_contents("http://www.muneccim.com/gunluk_fal/bugun.asp?burc=3");
  223.         preg_match_all("#Narrow\"><strong><big>(.*?)</big></strong></font>#si", $site, $bsonuc);
  224.         $burcu = iconv("iso-8859-9", "utf-8", form($bsonuc[1][0]));
  225.         echo "<p style=\"margin:0;padding:0;text-align:center;font:bold 10pt 'trebuchet ms';\">İkizler Burcu</p><p style=\"margin:0;padding:3px 17px 7px 7px;text-align:justify;font:normal 8pt tahoma;color:#333;\">" . $burcu . "</p>";
  226.     }
  227.     if ($ay == 6 && 22 <= $gun || $ay == 7 && $gun <= 23) {
  228.         $site = file_get_contents("http://www.muneccim.com/gunluk_fal/bugun.asp?burc=4");
  229.         preg_match_all("#Narrow\"><strong><big>(.*?)</big></strong></font>#si", $site, $bsonuc);
  230.         $burcu = iconv("iso-8859-9", "utf-8", form($bsonuc[1][0]));
  231.         echo "<p style=\"margin:0;padding:0;text-align:center;font:bold 10pt 'trebuchet ms';\">Yengeç Burcu</p><p style=\"margin:0;padding:3px 17px 7px 7px;text-align:justify;font:normal 8pt tahoma;color:#333;\">" . $burcu . "</p>";
  232.     }
  233.     if ($ay == 7 && 24 <= $gun || $ay == 8 && $gun <= 23) {
  234.         $site = file_get_contents("http://www.muneccim.com/gunluk_fal/bugun.asp?burc=5");
  235.         preg_match_all("#Narrow\"><strong><big>(.*?)</big></strong></font>#si", $site, $bsonuc);
  236.         $burcu = iconv("iso-8859-9", "utf-8", form($bsonuc[1][0]));
  237.         echo "<p style=\"margin:0;padding:0;text-align:center;font:bold 10pt 'trebuchet ms';\">Aslan Burcu</p><p style=\"margin:0;padding:3px 17px 7px 7px;text-align:justify;font:normal 8pt tahoma;color:#333;\">" . $burcu . "</p>";
  238.     }
  239.     if ($ay == 8 && 24 <= $gun || $ay == 9 && $gun <= 23) {
  240.         $site = file_get_contents("http://www.muneccim.com/gunluk_fal/bugun.asp?burc=6");
  241.         preg_match_all("#Narrow\"><strong><big>(.*?)</big></strong></font>#si", $site, $bsonuc);
  242.         $burcu = iconv("iso-8859-9", "utf-8", form($bsonuc[1][0]));
  243.         echo "<p style=\"margin:0;padding:0;text-align:center;font:bold 10pt 'trebuchet ms';\">Başak Burcu</p><p style=\"margin:0;padding:3px 17px 7px 7px;text-align:justify;font:normal 8pt tahoma;color:#333;\">" . $burcu . "</p>";
  244.     }
  245.     if ($ay == 9 && 24 <= $gun || $ay == 10 && $gun <= 22) {
  246.         $site = file_get_contents("http://www.muneccim.com/gunluk_fal/bugun.asp?burc=7");
  247.         preg_match_all("#Narrow\"><strong><big>(.*?)</big></strong></font>#si", $site, $bsonuc);
  248.         $burcu = iconv("iso-8859-9", "utf-8", form($bsonuc[1][0]));
  249.         echo "<p style=\"margin:0;padding:0;text-align:center;font:bold 10pt 'trebuchet ms';\">Terazi Burcu</p><p style=\"margin:0;padding:3px 17px 7px 7px;text-align:justify;font:normal 8pt tahoma;color:#333;\">" . $burcu . "</p>";
  250.     }
  251.     if ($ay == 10 && 23 <= $gun || $ay == 11 && $gun <= 22) {
  252.         $site = file_get_contents("http://www.muneccim.com/gunluk_fal/bugun.asp?burc=8");
  253.         preg_match_all("#Narrow\"><strong><big>(.*?)</big></strong></font>#si", $site, $bsonuc);
  254.         $burcu = iconv("iso-8859-9", "utf-8", form($bsonuc[1][0]));
  255.         echo "<p style=\"margin:0;padding:0;text-align:center;font:bold 10pt 'trebuchet ms';\">Akrep Burcu</p><p style=\"margin:0;padding:3px 17px 7px 7px;text-align:justify;font:normal 8pt tahoma;color:#333;\">" . $burcu . "</p>";
  256.     }
  257.     if ($ay == 11 && 23 <= $gun || $ay == 12 && $gun <= 22) {
  258.         $site = file_get_contents("http://www.muneccim.com/gunluk_fal/bugun.asp?burc=9");
  259.         preg_match_all("#Narrow\"><strong><big>(.*?)</big></strong></font>#si", $site, $bsonuc);
  260.         $burcu = iconv("iso-8859-9", "utf-8", form($bsonuc[1][0]));
  261.         echo "<p style=\"margin:0;padding:0;text-align:center;font:bold 10pt 'trebuchet ms';\">Yay Burcu</p><p style=\"margin:0;padding:3px 17px 7px 7px;text-align:justify;font:normal 8pt tahoma;color:#333;\">" . $burcu . "</p>";
  262.     }
  263. }
  264.  
  265. function burcu($ayy, $gunn)
  266. {
  267.     $ay  = $ayy;
  268.     $gun = $gunn;
  269.     if ($ay == 12 && 23 <= $gun || $ay == 1 && $gun <= 20) {
  270.         $burcu = "Oğlak";
  271.     }
  272.     if ($ay == 1 && 21 <= $gun || $ay == 2 && $gun <= 19) {
  273.         $burcu = "Kova";
  274.     }
  275.     if ($ay == 2 && 20 <= $gun || $ay == 3 && $gun <= 20) {
  276.         $burcu = "Balık";
  277.     }
  278.     if ($ay == 3 && 21 <= $gun || $ay == 4 && $gun <= 20) {
  279.         $burcu = "Koç";
  280.     }
  281.     if ($ay == 4 && 21 <= $gun || $ay == 5 && $gun <= 21) {
  282.         $burcu = "Boğa";
  283.     }
  284.     if ($ay == 5 && 22 <= $gun || $ay == 6 && $gun <= 21) {
  285.         $burcu = "İkizler";
  286.     }
  287.     if ($ay == 6 && 22 <= $gun || $ay == 7 && $gun <= 23) {
  288.         $burcu = "Yengeç";
  289.     }
  290.     if ($ay == 7 && 24 <= $gun || $ay == 8 && $gun <= 23) {
  291.         $burcu = "Aslan";
  292.     }
  293.     if ($ay == 8 && 24 <= $gun || $ay == 9 && $gun <= 23) {
  294.         $burcu = "Başak";
  295.     }
  296.     if ($ay == 9 && 24 <= $gun || $ay == 10 && $gun <= 22) {
  297.         $burcu = "Terazi";
  298.     }
  299.     if ($ay == 10 && 23 <= $gun || $ay == 11 && $gun <= 22) {
  300.         $burcu = "Akrep";
  301.     }
  302.     if ($ay == 11 && 23 <= $gun || $ay == 12 && $gun <= 22) {
  303.         $burcu = "Yay";
  304.     }
  305.     return $burcu;
  306. }
  307.  
  308. function burcbg($ayy, $gunn)
  309. {
  310.     $ay  = $ayy;
  311.     $gun = $gunn;
  312.     if ($ay == 12 && 23 <= $gun || $ay == 1 && $gun <= 20) {
  313.         echo "<div class=\"profildetaytablo\" style=\"background-image:url(img/burc/oglak.jpg);background-repeat:no-repeat;background-position:120px 0\">";
  314.     }
  315.     if ($ay == 1 && 21 <= $gun || $ay == 2 && $gun <= 19) {
  316.         echo "<div class=\"profildetaytablo\" style=\"background-image:url(img/burc/kova.jpg);background-repeat:no-repeat;background-position:120px 0\">";
  317.     }
  318.     if ($ay == 2 && 20 <= $gun || $ay == 3 && $gun <= 20) {
  319.         echo "<div class=\"profildetaytablo\" style=\"background-image:url(img/burc/balik.jpg);background-repeat:no-repeat;background-position:120px 0\">";
  320.     }
  321.     if ($ay == 3 && 21 <= $gun || $ay == 4 && $gun <= 20) {
  322.         echo "<div class=\"profildetaytablo\" style=\"background-image:url(img/burc/koc.jpg);background-repeat:no-repeat;background-position:120px 0\">";
  323.     }
  324.     if ($ay == 4 && 21 <= $gun || $ay == 5 && $gun <= 21) {
  325.         echo "<div class=\"profildetaytablo\" style=\"background-image:url(img/burc/boga.jpg);background-repeat:no-repeat;background-position:120px 0\">";
  326.     }
  327.     if ($ay == 5 && 22 <= $gun || $ay == 6 && $gun <= 21) {
  328.         echo "<div class=\"profildetaytablo\" style=\"background-image:url(img/burc/ikizler.jpg);background-repeat:no-repeat;background-position:120px 0\">";
  329.     }
  330.     if ($ay == 6 && 22 <= $gun || $ay == 7 && $gun <= 23) {
  331.         echo "<div class=\"profildetaytablo\" style=\"background-image:url(img/burc/yengec.jpg);background-repeat:no-repeat;background-position:120px 0\">";
  332.     }
  333.     if ($ay == 7 && 24 <= $gun || $ay == 8 && $gun <= 23) {
  334.         echo "<div class=\"profildetaytablo\" style=\"background-image:url(img/burc/aslan.jpg);background-repeat:no-repeat;background-position:120px 0\">";
  335.     }
  336.     if ($ay == 8 && 24 <= $gun || $ay == 9 && $gun <= 23) {
  337.         echo "<div class=\"profildetaytablo\" style=\"background-image:url(img/burc/basak.jpg);background-repeat:no-repeat;background-position:120px 0\">";
  338.     }
  339.     if ($ay == 9 && 24 <= $gun || $ay == 10 && $gun <= 22) {
  340.         echo "<div class=\"profildetaytablo\" style=\"background-image:url(img/burc/terazi.jpg);background-repeat:no-repeat;background-position:120px 0\">";
  341.     }
  342.     if ($ay == 10 && 23 <= $gun || $ay == 11 && $gun <= 22) {
  343.         echo "<div class=\"profildetaytablo\" style=\"background-image:url(img/burc/akrep.jpg);background-repeat:no-repeat;background-position:120px 0\">";
  344.     }
  345.     if ($ay == 11 && 23 <= $gun || $ay == 12 && $gun <= 22) {
  346.         echo "<div class=\"profildetaytablo\" style=\"background-image:url(img/burc/yay.jpg);background-repeat:no-repeat;background-position:120px 0\">";
  347.     }
  348. }
  349.  
  350. function sacrengi($srenk)
  351. {
  352.     switch ($srenk) {
  353.         case 1:
  354.             $sac = "Siyah";
  355.             break;
  356.         case 2:
  357.             $sac = "Kahverengi";
  358.             break;
  359.         case 3:
  360.             $sac = "Sarı";
  361.             break;
  362.         case 4:
  363.             $sac = "Kızıl";
  364.             break;
  365.         case 5:
  366.             $sac = "Kumral";
  367.             break;
  368.         case 6:
  369.             $sac = "Kırlaşmış";
  370.             break;
  371.         case 7:
  372.             $sac = "Beyaz";
  373.             break;
  374.         case 8:
  375.     }
  376.     $sac = "Diğer";
  377.     break;
  378.     $sac = "Belirtmemiş";
  379.     break;
  380.     return $sac;
  381. }
  382.  
  383. function gozrengi($grenk)
  384. {
  385.     switch ($grenk) {
  386.         case 1:
  387.             $goz = "Kahverengi";
  388.             break;
  389.         case 2:
  390.             $goz = "Açık kahve";
  391.             break;
  392.         case 3:
  393.             $goz = "Ela";
  394.             break;
  395.         case 4:
  396.             $goz = "Yeşil";
  397.             break;
  398.         case 5:
  399.             $goz = "Mavi";
  400.             break;
  401.         case 6:
  402.             $goz = "Siyah";
  403.             break;
  404.         case 7:
  405.             $goz = "Gri";
  406.             break;
  407.         case 8:
  408.     }
  409.     $goz = "Diğer";
  410.     break;
  411.     $goz = "Belirtmemiş";
  412.     break;
  413.     return $goz;
  414. }
  415.  
  416. function vucuttipi($vtip)
  417. {
  418.     switch ($vtip) {
  419.         case 1:
  420.             $vucut = "İnce";
  421.             break;
  422.         case 2:
  423.             $vucut = "Normal";
  424.             break;
  425.         case 3:
  426.             $vucut = "Atletik";
  427.             break;
  428.         case 4:
  429.             $vucut = "Balık eti";
  430.             break;
  431.         case 5:
  432.     }
  433.     $vucut = "Kilolu";
  434.     break;
  435.     $vucut = "Belirtmemiş";
  436.     break;
  437.     return $vucut;
  438. }
  439.  
  440. function meslek($mesleka)
  441. {
  442.     switch ($mesleka) {
  443.         case 46:
  444.             $meslek1 = "Belirtmek istemiyor";
  445.             break;
  446.         case 1:
  447.             $meslek1 = "Bilişim";
  448.             break;
  449.         case 2:
  450.             $meslek1 = "Çevirmen";
  451.             break;
  452.         case 3:
  453.             $meslek1 = "Danışmanlık";
  454.             break;
  455.         case 4:
  456.             $meslek1 = "Denizci";
  457.             break;
  458.         case 5:
  459.             $meslek1 = "Diğer";
  460.             break;
  461.         case 6:
  462.             $meslek1 = "Din adamı";
  463.             break;
  464.         case 7:
  465.             $meslek1 = "Doktor";
  466.             break;
  467.         case 8:
  468.             $meslek1 = "Eczacı";
  469.             break;
  470.         case 9:
  471.             $meslek1 = "Emniyet görevlisi";
  472.             break;
  473.         case 10:
  474.             $meslek1 = "Ev kadını";
  475.             break;
  476.         case 11:
  477.             $meslek1 = "Finans";
  478.             break;
  479.         case 12:
  480.             $meslek1 = "Halkla ilişkiler";
  481.             break;
  482.         case 13:
  483.             $meslek1 = "Hemşire";
  484.             break;
  485.         case 14:
  486.             $meslek1 = "Hostes";
  487.             break;
  488.         case 15:
  489.             $meslek1 = "Hukukçu";
  490.             break;
  491.         case 16:
  492.             $meslek1 = "İlaç sektörü";
  493.             break;
  494.         case 17:
  495.             $meslek1 = "İnsan kaynakları";
  496.             break;
  497.         case 18:
  498.             $meslek1 = "İthalat-İhracat";
  499.             break;
  500.         case 19:
  501.             $meslek1 = "Manken";
  502.             break;
  503.         case 20:
  504.             $meslek1 = "Medya mensubu";
  505.             break;
  506.         case 21:
  507.             $meslek1 = "Memur";
  508.             break;
  509.         case 22:
  510.             $meslek1 = "Mimar";
  511.             break;
  512.         case 23:
  513.             $meslek1 = "Muhasebe";
  514.             break;
  515.         case 24:
  516.             $meslek1 = "Mühendis";
  517.             break;
  518.         case 25:
  519.             $meslek1 = "Müzisyen";
  520.             break;
  521.         case 26:
  522.             $meslek1 = "Ordu mensubu";
  523.             break;
  524.         case 27:
  525.             $meslek1 = "Otomotiv";
  526.             break;
  527.         case 28:
  528.             $meslek1 = "Öğretim görevlisi";
  529.             break;
  530.         case 29:
  531.             $meslek1 = "Öğretmen";
  532.             break;
  533.         case 30:
  534.             $meslek1 = "Politikacı";
  535.             break;
  536.         case 31:
  537.             $meslek1 = "Psikolog";
  538.             break;
  539.         case 32:
  540.             $meslek1 = "Reklam";
  541.             break;
  542.         case 33:
  543.             $meslek1 = "Sağlık hizmetleri";
  544.             break;
  545.         case 34:
  546.             $meslek1 = "Sanatçı";
  547.             break;
  548.         case 35:
  549.             $meslek1 = "Sanayici";
  550.             break;
  551.         case 36:
  552.             $meslek1 = "Satış-Pazarlama";
  553.             break;
  554.         case 37:
  555.             $meslek1 = "Serbest meslek";
  556.             break;
  557.         case 38:
  558.             $meslek1 = "Sigortacı";
  559.             break;
  560.         case 39:
  561.             $meslek1 = "Sporcu";
  562.             break;
  563.         case 40:
  564.             $meslek1 = "Tekstil";
  565.             break;
  566.         case 41:
  567.             $meslek1 = "Ticaret";
  568.             break;
  569.         case 42:
  570.             $meslek1 = "Turizm";
  571.             break;
  572.         case 43:
  573.             $meslek1 = "Ulaşım-Taşımacılık";
  574.             break;
  575.         case 44:
  576.             $meslek1 = "Yayıncılık";
  577.             break;
  578.         case 45:
  579.     }
  580.     $meslek1 = "Yöneticilik";
  581.     break;
  582.     $meslek1 = "Belirtmemiş";
  583.     break;
  584.     return $meslek1;
  585. }
  586.  
  587. function meslekpoz($meslekd)
  588. {
  589.     switch ($meslekd) {
  590.         case 1:
  591.             $meslek2 = "Full time çalışan";
  592.             break;
  593.         case 2:
  594.             $meslek2 = "Part time çalışan";
  595.             break;
  596.         case 3:
  597.             $meslek2 = "Orta düzey yönetici";
  598.             break;
  599.         case 4:
  600.             $meslek2 = "Üst düzey yönetici";
  601.             break;
  602.         case 5:
  603.             $meslek2 = "Kendi işim";
  604.             break;
  605.         case 6:
  606.             $meslek2 = "Öğrenci";
  607.             break;
  608.         case 7:
  609.             $meslek2 = "Emekli";
  610.             break;
  611.         case 8:
  612.     }
  613.     $meslek2 = "İşsiz";
  614.     break;
  615.     $meslek2 = "Belirtmemiş";
  616.     break;
  617.     return $meslek2;
  618. }
  619.  
  620. function gelir($gelird)
  621. {
  622.     switch ($gelird) {
  623.         case 1:
  624.             $gelir2 = "500 TL altı";
  625.             break;
  626.         case 2:
  627.             $gelir2 = "500-1000 TL";
  628.             break;
  629.         case 3:
  630.             $gelir2 = "1000-2000 TL";
  631.             break;
  632.         case 4:
  633.             $gelir2 = "2000-3000 TL";
  634.             break;
  635.         case 5:
  636.             $gelir2 = "3000 TL üstü";
  637.             break;
  638.         case 6:
  639.     }
  640.     $gelir2 = "Cevap vermek istemiyorum";
  641.     break;
  642.     $gelir2 = "Belirtmemiş";
  643.     break;
  644.     return $gelir2;
  645. }
  646.  
  647. function yabancidil($yabancidild)
  648. {
  649.     switch ($yabancidild) {
  650.         case 1:
  651.             $yabancidil2 = "Almanca";
  652.             break;
  653.         case 2:
  654.             $yabancidil2 = "Arapça";
  655.             break;
  656.         case 3:
  657.             $yabancidil2 = "Bulgarca";
  658.             break;
  659.         case 4:
  660.             $yabancidil2 = "Çince";
  661.             break;
  662.         case 5:
  663.             $yabancidil2 = "Farsça";
  664.             break;
  665.         case 6:
  666.             $yabancidil2 = "Fransızca";
  667.             break;
  668.         case 7:
  669.             $yabancidil2 = "Hollandaca";
  670.             break;
  671.         case 8:
  672.             $yabancidil2 = "İngilizce";
  673.             break;
  674.         case 9:
  675.             $yabancidil2 = "İspanyolca";
  676.             break;
  677.         case 10:
  678.             $yabancidil2 = "İtalyanca";
  679.             break;
  680.         case 11:
  681.             $yabancidil2 = "Japonca";
  682.             break;
  683.         case 12:
  684.             $yabancidil2 = "Rusça";
  685.             break;
  686.         case 13:
  687.             $yabancidil2 = "Yunanca";
  688.             break;
  689.         case 14:
  690.     }
  691.     $yabancidil2 = "Diğer";
  692.     break;
  693.     $yabancidil2 = "Belirtmemiş";
  694.     break;
  695.     return $yabancidil2;
  696. }
  697.  
  698. function kiminleyas($kiminleyasd)
  699. {
  700.     switch ($kiminleyasd) {
  701.         case 1:
  702.             $kiminleyas2 = "Yalnızım";
  703.             break;
  704.         case 2:
  705.             $kiminleyas2 = "Çocuklarımla";
  706.             break;
  707.         case 3:
  708.             $kiminleyas2 = "Ev arkadaşımla";
  709.             break;
  710.         case 4:
  711.             $kiminleyas2 = "Oda arkadaşımla";
  712.             break;
  713.         case 5:
  714.             $kiminleyas2 = "Ailemle";
  715.             break;
  716.         case 6:
  717.     }
  718.     $kiminleyas2 = "Diğer";
  719.     break;
  720.     $kiminleyas2 = "Belirtmemiş";
  721.     break;
  722.     return $kiminleyas2;
  723. }
  724.  
  725. function cocuk($cocukd)
  726. {
  727.     switch ($cocukd) {
  728.         case 1:
  729.             $cocuk2 = "Çocuksuzum";
  730.             break;
  731.         case 2:
  732.             $cocuk2 = "Var, onunla yaşıyorum";
  733.             break;
  734.         case 3:
  735.             $cocuk2 = "Var, ama onunla yaşamıyorum";
  736.             break;
  737.         case 4:
  738.     }
  739.     $cocuk2 = "Var, bazen onunla yaşıyorum";
  740.     break;
  741.     $cocuk2 = "Belirtmemiş";
  742.     break;
  743.     return $cocuk2;
  744. }
  745.  
  746. function cocukiste($cocukisted)
  747. {
  748.     switch ($cocukisted) {
  749.         case 1:
  750.             $cocukiste2 = "İstiyorum";
  751.             break;
  752.         case 2:
  753.             $cocukiste2 = "Emin değilim";
  754.             break;
  755.         case 3:
  756.     }
  757.     $cocukiste2 = "İstemiyorum";
  758.     break;
  759.     $cocukiste2 = "Belirtmemiş";
  760.     break;
  761.     return $cocukiste2;
  762. }
  763.  
  764. function sigara($sig)
  765. {
  766.     switch ($sig) {
  767.         case 1:
  768.             $sigara = "Az içiyorum";
  769.             break;
  770.         case 2:
  771.             $sigara = "İçiyorum";
  772.             break;
  773.         case 3:
  774.             $sigara = "İçmiyorum";
  775.             break;
  776.         case 4:
  777.             $sigara = "Puro";
  778.             break;
  779.         case 5:
  780.     }
  781.     $sigara = "Pipo";
  782.     break;
  783.     $sigara = "Belirtmemiş";
  784.     break;
  785.     return $sigara;
  786. }
  787.  
  788. function alkol($alk)
  789. {
  790.     switch ($alk) {
  791.         case 1:
  792.             $alkol = "Az içiyorum";
  793.             break;
  794.         case 2:
  795.             $alkol = "İçiyorum";
  796.             break;
  797.         case 3:
  798.             $alkol = "İçmiyorum";
  799.             break;
  800.         case 4:
  801.     }
  802.     $alkol = "Sadece özel günlerde";
  803.     break;
  804.     $alkol = "Belirtmemiş";
  805.     break;
  806.     return $alkol;
  807. }
  808.  
  809. function egitim($egitimd)
  810. {
  811.     switch ($egitimd) {
  812.         case 1:
  813.             $egitim1 = "İlkokul";
  814.             break;
  815.         case 2:
  816.             $egitim1 = "Ortaokul";
  817.             break;
  818.         case 3:
  819.             $egitim1 = "Lise";
  820.             break;
  821.         case 4:
  822.             $egitim1 = "Önlisans";
  823.             break;
  824.         case 5:
  825.             $egitim1 = "Lisans";
  826.             break;
  827.         case 6:
  828.     }
  829.     $egitim1 = "Yüksek lisans";
  830.     break;
  831.     $egitim1 = "Belirtmemiş";
  832.     break;
  833.     return $egitim1;
  834. }
  835.  
  836. function medeni()
  837. {
  838.     echo "<option value=\"1\">Bekar</option><option value=\"2\">Nişanlı</option><option value=\"3\">Evli</option><option value=\"4\">Dul</option><option value=\"5\">Boşanmış</option><option value=\"6\">Ayrı Yaşıyor</option><option value=\"7\">İlişkisi var</option>";
  839. }
  840.  
  841. function aracinsiyet($arac)
  842. {
  843.     switch ($arac) {
  844.         case 1:
  845.             $aracinsiyet1 = "Erkek";
  846.             break;
  847.         case 2:
  848.             $aracinsiyet1 = "Kadın";
  849.     }
  850.     return $aracinsiyet1;
  851. }
  852.  
  853. function arailiski($arai)
  854. {
  855.     switch ($arai) {
  856.         case 1:
  857.             $arailiski1 = "Sanal arkadaşlık";
  858.             break;
  859.         case 2:
  860.             $arailiski1 = "Arkadaşlık";
  861.             break;
  862.         case 3:
  863.             $arailiski1 = "Kısa süreli ilişki";
  864.             break;
  865.         case 4:
  866.             $arailiski1 = "Uzun süreli ilişki";
  867.             break;
  868.         case 5:
  869.             $arailiski1 = "Evlilik";
  870.     }
  871.     return $arailiski1;
  872. }
  873.  
  874. function sehir($s)
  875. {
  876.     switch ($s) {
  877.         case 1:
  878.             $il = "Adana";
  879.             break;
  880.         case 2:
  881.             $il = "Adıyaman";
  882.             break;
  883.         case 3:
  884.             $il = "Afyon";
  885.             break;
  886.         case 4:
  887.             $il = "Ağrı";
  888.             break;
  889.         case 5:
  890.             $il = "Amasya";
  891.             break;
  892.         case 6:
  893.             $il = "Ankara";
  894.             break;
  895.         case 7:
  896.             $il = "Antalya";
  897.             break;
  898.         case 8:
  899.             $il = "Artvin";
  900.             break;
  901.         case 9:
  902.             $il = "Aydın";
  903.             break;
  904.         case 10:
  905.             $il = "Balıkesir";
  906.             break;
  907.         case 11:
  908.             $il = "Bilecik";
  909.             break;
  910.         case 12:
  911.             $il = "Bingöl";
  912.             break;
  913.         case 13:
  914.             $il = "Bitlis";
  915.             break;
  916.         case 14:
  917.             $il = "Bolu";
  918.             break;
  919.         case 15:
  920.             $il = "Burdur";
  921.             break;
  922.         case 16:
  923.             $il = "Bursa";
  924.             break;
  925.         case 17:
  926.             $il = "Çanakkale";
  927.             break;
  928.         case 18:
  929.             $il = "Çankırı";
  930.             break;
  931.         case 19:
  932.             $il = "Çorum";
  933.             break;
  934.         case 20:
  935.             $il = "Denizli";
  936.             break;
  937.         case 21:
  938.             $il = "Diyarbakır";
  939.             break;
  940.         case 22:
  941.             $il = "Edirne";
  942.             break;
  943.         case 23:
  944.             $il = "Elazığ";
  945.             break;
  946.         case 24:
  947.             $il = "Erzican";
  948.             break;
  949.         case 25:
  950.             $il = "Erzurum";
  951.             break;
  952.         case 26:
  953.             $il = "Eskişehir";
  954.             break;
  955.         case 27:
  956.             $il = "Gaziantep";
  957.             break;
  958.         case 28:
  959.             $il = "Giresun";
  960.             break;
  961.         case 29:
  962.             $il = "Gümüşhane";
  963.             break;
  964.         case 30:
  965.             $il = "Hakkari";
  966.             break;
  967.         case 31:
  968.             $il = "Hatay";
  969.             break;
  970.         case 32:
  971.             $il = "Isparta";
  972.             break;
  973.         case 33:
  974.             $il = "Mersin";
  975.             break;
  976.         case 34:
  977.             $il = "İstanbul";
  978.             break;
  979.         case 35:
  980.             $il = "İzmir";
  981.             break;
  982.         case 36:
  983.             $il = "Kars";
  984.             break;
  985.         case 37:
  986.             $il = "Kastamonu";
  987.             break;
  988.         case 38:
  989.             $il = "Kayseri";
  990.             break;
  991.         case 39:
  992.             $il = "Kırklareli";
  993.             break;
  994.         case 40:
  995.             $il = "Kırşehir";
  996.             break;
  997.         case 41:
  998.             $il = "Kocaeli";
  999.             break;
  1000.         case 42:
  1001.             $il = "Konya";
  1002.             break;
  1003.         case 43:
  1004.             $il = "Kütahya";
  1005.             break;
  1006.         case 44:
  1007.             $il = "Malatya";
  1008.             break;
  1009.         case 45:
  1010.             $il = "Manisa";
  1011.             break;
  1012.         case 46:
  1013.             $il = "Kahramanmaraş";
  1014.             break;
  1015.         case 47:
  1016.             $il = "Mardin";
  1017.             break;
  1018.         case 48:
  1019.             $il = "Muğla";
  1020.             break;
  1021.         case 49:
  1022.             $il = "Muş";
  1023.             break;
  1024.         case 50:
  1025.             $il = "Nevşehir";
  1026.             break;
  1027.         case 51:
  1028.             $il = "Niğde";
  1029.             break;
  1030.         case 52:
  1031.             $il = "Ordu";
  1032.             break;
  1033.         case 53:
  1034.             $il = "Rize";
  1035.             break;
  1036.         case 54:
  1037.             $il = "Sakarya";
  1038.             break;
  1039.         case 55:
  1040.             $il = "Samsun";
  1041.             break;
  1042.         case 56:
  1043.             $il = "Siirt";
  1044.             break;
  1045.         case 57:
  1046.             $il = "Sinop";
  1047.             break;
  1048. //============================================== PAYMENT ==========================================//
Add Comment
Please, Sign In to add comment