1. Список говнокодов пользователя d_fomenok

    Всего: 70

  2. PHP / Говнокод #19273

    +6

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    22. 22
    23. 23
    24. 24
    25. 25
    26. 26
    27. 27
    28. 28
    29. 29
    30. 30
    switch("пряные сухарики"){
    case ".gif":{
    	header('content-type: image/gif');
    	break;
    }
    case ".jpg":{
    	header('content-type: image/jpeg');
    	break;
    }
    case ".jpeg":{
    header('content-type: image/jpeg');
    break;
    }
    case ".bmp":{
    header('content-type: image/bmp');
    break;
    }
    case ".png":{
    header('content-type: image/png');
    break;
    }
    case ".ogg":{
    header('content-type: video/ogg');
    break;
    }
    case ".mp4":{
    header('content-type: video/mp4');
    break;
    }
    }

    d_fomenok, 29 Декабря 2015

    Комментарии (20)
  3. Си / Говнокод #19271

    −107

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    22. 22
    23. 23
    24. 24
    25. 25
    26. 26
    27. 27
    28. 28
    29. 29
    30. 30
    31. 31
    32. 32
    33. 33
    34. 34
    35. 35
    36. 36
    37. 37
    38. 38
    39. 39
    40. 40
    41. 41
    42. 42
    43. 43
    44. 44
    45. 45
    //------------------
    #define _rayaNumberToString(number, TNumber) \
    rayaInt32 digitsCount = 0, strSize; \
    TNumber digitsCountNum = RAYA_ABS(number); \
    while(digitsCountNum > 0){ digitsCount++; digitsCountNum/=10; }; \
    \
    strSize = digitsCount + (number<=0); \
    rayaString str = {malloc(sizeof(rayaCharCode)*strSize+1), strSize}; \
    str.chars[str.size]='\0'; \
    if(number < 0) str.chars[0]='-'; \
    if(number == 0) str.chars[0]='0'; \
    \
    rayaInt32 start = str.size-digitsCount; \
    rayaInt64 numberX = RAYA_ABS(number); \
    for(int i=str.size-1; i >= start; i--) { \
    str.chars[i] = '0' + RAYA_ABS(numberX-((numberX/10)*10)); \
    numberX /= 10; \
    }; \
    return str; \
    
    rayaString _rayaRemoveExcessZeroes(rayaString str) {
    
    int newStart = 0;
    int indexStart = (str.chars[0]=='-' || str.chars[0]=='+');
    for(int i = indexStart; i < str.size; i++) {
    if(str.chars[i] != '0'){ newStart = i; break; }
    }
    
    rayaInt32 newSize = str.size - newStart;
    rayaString newStr ;
    newStr.chars = malloc( sizeof(rayaCharCode)*(newSize+1) );
    newStr.size = newSize;
    newStr.chars[newSize] = '\0';
    
    int newIndex = 0;
    for(int i = newStart; i < str.size; i++) {
    newStr.chars[i-newStart] = str.chars[i];
    newIndex++;
    }
    return newStr;
    };
    
    rayaString _rayaIntToString(rayaInt64 num) {
    _rayaNumberToString(num,rayaInt64);
    };

    d_fomenok, 29 Декабря 2015

    Комментарии (3)
  4. PHP / Говнокод #19270

    −28

    1. 1
    Говнокод номер 5000

    d_fomenok, 29 Декабря 2015

    Комментарии (10)
  5. PHP / Говнокод #19268

    +7

    1. 001
    2. 002
    3. 003
    4. 004
    5. 005
    6. 006
    7. 007
    8. 008
    9. 009
    10. 010
    11. 011
    12. 012
    13. 013
    14. 014
    15. 015
    16. 016
    17. 017
    18. 018
    19. 019
    20. 020
    21. 021
    22. 022
    23. 023
    24. 024
    25. 025
    26. 026
    27. 027
    28. 028
    29. 029
    30. 030
    31. 031
    32. 032
    33. 033
    34. 034
    35. 035
    36. 036
    37. 037
    38. 038
    39. 039
    40. 040
    41. 041
    42. 042
    43. 043
    44. 044
    45. 045
    46. 046
    47. 047
    48. 048
    49. 049
    50. 050
    51. 051
    52. 052
    53. 053
    54. 054
    55. 055
    56. 056
    57. 057
    58. 058
    59. 059
    60. 060
    61. 061
    62. 062
    63. 063
    64. 064
    65. 065
    66. 066
    67. 067
    68. 068
    69. 069
    70. 070
    71. 071
    72. 072
    73. 073
    74. 074
    75. 075
    76. 076
    77. 077
    78. 078
    79. 079
    80. 080
    81. 081
    82. 082
    83. 083
    84. 084
    85. 085
    86. 086
    87. 087
    88. 088
    89. 089
    90. 090
    91. 091
    92. 092
    93. 093
    94. 094
    95. 095
    96. 096
    97. 097
    98. 098
    99. 099
    100. 100
    <?
    @session_start();
    @error_reporting ( E_ALL ^ E_WARNING ^ E_NOTICE );
    @ini_set ( 'display_errors', true );
    @ini_set ( 'html_errors', false );
    @ini_set ( 'error_reporting', E_ALL ^ E_WARNING ^ E_NOTICE );
    define( 'DATALIFEENGINE', true );
    define( 'ROOT_DIR', '../../..' );
    define( 'ENGINE_DIR', ROOT_DIR . '/system' );
    define ( 'NEXT_DIR', dirname ( __FILE__ ) );
    require_once NEXT_DIR.'/api.functions.php';
    require_once ENGINE_DIR.'/modules/functions.php';
    include_once (ENGINE_DIR . '/classes/mysql.php');
    include_once (ENGINE_DIR . '/data/dbconfig.php');
    include_once (ENGINE_DIR . '/data/config.php');
    if(!checksign($_GET)) die('SIG Error'); //check sig
    switch(strtolower($_GET['method']))
    {
    // Показываем профиль..
    case 'getprofile': 
    $id=$_GET['uid'];
    
        $db->query("SELECT * FROM ".USERPREFIX."_users where user_id in($id)");
        $resp="<profiles>";
        while($row=$db->get_row())
            {
        $row['fullname']=iconv($config['charset'],"UTF-8",$row['fullname']);
        $row['land']=iconv($config['charset'],"UTF-8",$row['land']); 
    $resp .=<<<XML
    <user>
            <uid>{$row['user_id']}</uid>
            <first_name>{$row['fullname']}</first_name>
            <last_name></last_name>
            <nickname>{$row['name']}</nickname>
            <birthday></birthday>
            <sex></sex>
            <avatar_url>{$config['http_home_url']}uploads/fotos/{$row['foto']}</avatar_url>
            <country>{$row['land']}</country>
            <city></city>
    </user>
    XML;
    }$resp.="</profiles>";
    break;
    // Отправляем ПМ
    case "sendmessage": 
    require_once ENGINE_DIR . '/classes/parse.class.php';
    $parse = new ParseFilter( );
    $parse->safe_mode = true;
    $uid=intval($_GET['uid']);
    $sender_id=intval($_GET['sender_id']);
    $message=convert_unicode($_GET['message'],$config['charset']);
    $message=$parse->BB_Parse( $parse->process($message ), false );
    $subj=strip_tags($db->safesql($nextgame['subj_pm'],$config['charset']));
    if($_GET['type']=='user'){
    $user=$db->super_query("SELECT user_id,name from ".USERPREFIX."_users where user_id='{$sender_id}'");
    
    }else
    {$user['name']="NexGame Aplication";
    }
    $time = time() + ($config['date_adjust'] * 60);
    $db->query( "INSERT INTO " . USERPREFIX . "_pm (subj, text, user, user_from, date, pm_read, folder) values ('$subj', '$message', '{$uid}', '{$user['name']}', '$time', 'no', 'inbox')" );
    $db->query("UPDATE " . USERPREFIX . "_users set pm_all=pm_all+1, pm_unread=pm_unread+1  where user_id='{$uid}'");
    $resp="<msg><uid>{$uid}</uid><delivered>1</delivered></msg>";
    break;
    case 'sendinvite': /// Инвайт отправим.
    
        if(empty($_GET['uid']) OR intval($_GET['sender_id'])==0 OR intval($_GET['app_id'])==0) die();
        $sender_id=intval($_GET['sender_id']);
        $game_id=intval($_GET['app_id']);
        $subj=(empty($nextgame['subj_invite']))?"Empty!":strip_tags($nextgame['subj_invite']);
        //$subj=strip_tags(trim(convert_unicode($nextgame['subj_invite'],$config['charset'])));
        $time = time() + ($config['date_adjust'] * 60);
        $game_link=($config['allow_alt_url'] == "yes")?$config['http_home_url']."game/".$game_id."/?ref_id=".$sender_id:$config['http_home_url']."?do=game&about_app=".$game_id."&ref_id=".$sender_id;
        $row=$db->super_query("SELECT name,user_id FROM ".USERPREFIX."_users where user_id='{$sender_id}'");
        if(!$row['user_id']) die("No Such User"); //Фтопку отправлять от анонимов
        $message=str_replace('&quot;', '"',$nextgame['message_invite']);
        $message=str_replace("[game_link]","<a href=\"{$game_link}\">",$message);
        $message=str_replace("[/game_link]","</a>",$message);
        $message=str_replace("{gamer}",$row['name'],$message);
        $message=$db->safesql($message);
        $users=explode(",",$_GET['uid']);
        $query=array();
        $users_id=array();
        foreach($users as $user){
                $users_id[]=intval($user); $query[]="('$subj','$message','$user','{$row['name']}','$time','no','inbox')";
    	$resp.="<user>$user</user>";}
        $invite_recipients=implode(",",$query);
        $invite_recipients_id=implode(",",$users_id);
        $db->query( "INSERT INTO " . USERPREFIX . "_pm (subj, text, user, user_from, date, pm_read, folder) values $invite_recipients;");  
         $db->query( "UPDATE " . USERPREFIX . "_users set pm_all=pm_all+1, pm_unread=pm_unread+1  where user_id in('{$invite_recipients_id}')" );
        $resp="<invite>{$resp}</invite>";
    break;
    default:  $resp="<error>true</error>";
    }
    @header('Content-type: text/xml');
    echo<<<XML
    <?xml version="1.0" encoding="UTF-8"?>
    $resp
    XML;
    ?>

    Генерируем XML

    d_fomenok, 29 Декабря 2015

    Комментарии (0)
  6. PHP / Говнокод #19267

    +5

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    22. 22
    23. 23
    24. 24
    25. 25
    26. 26
    27. 27
    28. 28
    29. 29
    30. 30
    31. 31
    32. 32
    33. 33
    34. 34
    35. 35
    36. 36
    37. 37
    38. 38
    39. 39
    40. 40
    41. 41
    42. 42
    43. 43
    44. 44
    45. 45
    46. 46
    47. 47
    48. 48
    49. 49
    50. 50
    51. 51
    52. 52
    53. 53
    54. 54
    55. 55
    $DB_Connect = new DB_Connect(); // Подключаем класс базы данных
    $acces = 1; // 1 - Включено API, 0 - Отключено API
    if($acces == 1) { // Проверяем чтобы API было включено
    	$DB_Connect->connect(); // Подключаемся к базе данных
    	mysql_set_charset( 'utf8' ); // Изменяем кодировку базы данных
    		if($_GET['api_id']) $gameid = sText($_GET['api_id']); // Получаем API_ID
    		else $gameid = sText($_POST['api_id']); 
    		$game = mysql_fetch_array(mysql_query("SELECT id FROM `vii_apps` WHERE id='".$gameid."'")); // Запрашиваем ID с полученным API_ID
    		$row_sql = mysql_fetch_array(mysql_query("SELECT count(*) as cnt FROM `vii_api` WHERE `IP`='".$_SERVER["REMOTE_ADDR"]."' AND `data`>(".time()."-1)"));
    		// Запрашиваем количество запросов в секунду от этого человека
    		if($row_sql['cnt']<3) { // Проверяем частоту запросов от этого человека
    			if(!$game) json_error(2); // Проверяем существование этого приложения
    			else {
    				if($_GET['method']) $method = $_GET['method'];  // Получаем METHOD
    				else $method = $_POST['method']; 
    				if($_GET['sig']) $sig = sText($_GET['sig']); // Получаем SIG
    				else $sig = sText($_POST['sig']);
    				if($method=="users.get") { // Если это метод users.get
    					if($_GET['uids']) $uids = sText($_GET['uids']); // Получаем UIDS
    					else $uids = sText($_POST['uids']); 
    					$uids_explode = explode(",", $uids);
    					if($_GET['fields']) $fields = sText($_GET['fields']); // Получаем FIELDS
    					else $fields = sText($_POST['fields']);
    					$fields_explode = explode(",", $fields);
    					$row = mysql_fetch_array(mysql_query("SELECT `user_id` FROM `vii_users` WHERE `IP`='".$_SERVER["REMOTE_ADDR"]."' ORDER by `user_lastdate` DESC LIMIT 1")); 
    					// Получаем ID пользователя который делает запрос к API
    					$viewer_id = $row['user_id'];
    					$row_ = mysql_fetch_array(mysql_query("SELECT secret FROM `vii_apps_auth` WHERE user_id='".$viewer_id."' and app_id = '".$gameid."'")); 
    					// Получаем личный SECRET пользователя который делает запрос к API
    					$secret = $row_['secret'];
    					$api = new fbapi($gameid, $secret, $viewer_id); // Подключаем класс проверки SIG
    					$sig_data = $api->api('users.get',array('uids'=>$uids,'fields'=>$fields)); // Формируем запрос на получение SIG
    					if($sig == $sig_data) { // Проверяем правильность SIG
    						mysql_query("INSERT INTO `vii_api` (method,ip,data) VALUES('".$method."','".$_SERVER["REMOTE_ADDR"]."','".time()."')");
    						// Записываем выполнение API метода
    						$vars = array(); // Формируем начало ответа
    						$vars['response'] = array(); // Формируем переменную RESPONSE
    						foreach($uids_explode as $uid) { // Перебираем все полученные UIDS
    							$row = mysql_fetch_array(mysql_query("SELECT user_id,user_name,user_lastname FROM `vii_users` WHERE user_id='".$uid."'"));
    							$rd = array('uid'=>$row['user_id'],'first_name'=>$row['user_name'],'last_name'=>$row['user_lastname']); 
    							// Формируем массив для вставки его в ответ
    							if(count($fields_explode)!=0 and $fields_explode[0]!=null) { // Проверяем дополнительные поля
    								foreach($fields_explode as $field) { // Перебираем дополнительные поля
    									$rows = mysql_fetch_array(mysql_query("SELECT ".$field." FROM `vii_users` WHERE user_id='".$uid."'"));
    									if($field == "user_photo") {
    										if($rows[$fields]) $rd[$field] = "http://lineage18.ru/uploads/users/".$uid."/".$rows[$field];
    										else $rd[$field] = "http://lineage18.ru/templates/Default/images/100_no_ava.png";
    									} else $rd[$field] = $rows[$field]; // Добавляем в массив дополнительные поля
    								}
    							}
    							array_push($vars['response'],$rd); // Вставляем сформированный массив $rd в общий ответ
    						}
    						echo json_encode_cyr($vars); // Преобразуем нашу строку в JSON формат
    					} else json_error(3); // Ошибка не правильной SIG
    				} else if($method=="secure.withdrawVotes") { // Новый метод secure.withdrawVotes

    Пишем API на PHP

    d_fomenok, 29 Декабря 2015

    Комментарии (1)
  7. Си / Говнокод #19263

    −105

    1. 1
    github.com/BPS-projects/os

    Операционная система наркозависимого 11-летнего.

    d_fomenok, 28 Декабря 2015

    Комментарии (214)
  8. PHP / Говнокод #19262

    +4

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    <?php
    $a=$_POST['a'];
    $b=$_POST['b'];
    $c=$_POST['c'];
    if $_POST['a']*x*2+$_POST['b']*x+$_POST['c']
    {
    else $y=$_POST['b']*2-4*$_POST['a']*$_POST['c'];
    nl2br('</n>')
    echo $y;
    $k1=$_POST['b']+$y/2*$_POST['a'];
    nl2br('</n>')
    echo $k1;
    $k2=$_POST['b']-$y/2*$_POST['a'];
    nl2br('</n>')
    echo $k2;
    
    }
    echo $k1;
    echo $k2;
    ?>

    Юный говнокодер изучает PHP

    d_fomenok, 28 Декабря 2015

    Комментарии (1)
  9. PHP / Говнокод #19261

    +7

    1. 1
    2. 2
    function api($method,$params=false) {
    if (!$params) $params = array();

    Олег Илларионов, Разработчик ВКонтакте
    Для тех кто не врубился:
    Можно написать $params = array()

    d_fomenok, 28 Декабря 2015

    Комментарии (8)
  10. PHP / Говнокод #19260

    −10

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    22. 22
    23. 23
    24. 24
    25. 25
    26. 26
    27. 27
    28. 28
    29. 29
    30. 30
    31. 31
    32. 32
    33. 33
    34. 34
    35. 35
    36. 36
    37. 37
    38. 38
    39. 39
    40. 40
    41. 41
    42. 42
    43. 43
    44. 44
    45. 45
    46. 46
    47. 47
    48. 48
    49. 49
    50. 50
    51. 51
    52. 52
    53. 53
    54. 54
    55. 55
    56. 56
    57. 57
    58. 58
    59. 59
    60. 60
    61. 61
    62. 62
    63. 63
    64. 64
    65. 65
    66. 66
    67. 67
    68. 68
    69. 69
    70. 70
    71. 71
    72. 72
    73. 73
    74. 74
    75. 75
    76. 76
    77. 77
    78. 78
    79. 79
    80. 80
    81. 81
    82. 82
    83. 83
    84. 84
    85. 85
    86. 86
    87. 87
    88. 88
    89. 89
    90. 90
    91. 91
    if($user_sett['profile'] == '1'){
    		$tpl->set('{display1}', 'none');
    		
    	} else {
    		$tpl->set('{display1}', '');	
    	}
    	
    		if($user_sett['friends'] == '1'){
    		$tpl->set('{display2}', 'none');
    		
    	} else {
    		$tpl->set('{display2}', '');	
    	}
    	
    		if($user_sett['albums'] == '1'){
    		$tpl->set('{display3}', 'none');
    		
    	} else {
    		$tpl->set('{display3}', '');	
    	}
    	
    		if($user_sett['videos'] == '1'){
    		$tpl->set('{display4}', 'none');
    		
    	} else {
    		$tpl->set('{display4}', '');	
    	}
    	
    		if($user_sett['audio'] == '1'){
    		$tpl->set('{display5}', 'none');
    		
    	} else {
    		$tpl->set('{display5}', '');	
    	}
    	
    		if($user_sett['mail'] == '1'){
    		$tpl->set('{display6}', 'none');
    		
    	} else {
    		$tpl->set('{display6}', '');	
    	}
    	
    		if($user_sett['groups'] == '1'){
    		$tpl->set('{display7}', 'none');
    		
    	} else {
    		$tpl->set('{display7}', '');	
    	}
    	
    		if($user_sett['news'] == '1'){
    		$tpl->set('{display8}', 'none');
    		
    	} else {
    		$tpl->set('{display8}', '');	
    	}
    	
    		if($user_sett['fave'] == '1'){
    		$tpl->set('{display9}', 'none');
    		
    	} else {
    		$tpl->set('{display9}', '');	
    	}
    	
    		if($user_sett['notes'] == '1'){
    		$tpl->set('{display10}', 'none');
    		
    	} else {
    		$tpl->set('{display10}', '');	
    	}
    	
    	
    		if($user_sett['settings'] == '1'){
    		$tpl->set('{display11}', 'none');
    		
    	} else {
    		$tpl->set('{display11}', '');	
    	}
    	
    		if($user_sett['apps'] == '1'){
    		$tpl->set('{display12}', 'none');
    		
    	} else {
    		$tpl->set('{display12}', '');	
    	}
    	
    			if($user_sett['ads'] == '1'){
    		$tpl->set('{display13}', 'none');
    		
    	} else {
    		$tpl->set('{display13}', '');	
    	}

    Вот что тяжёлые наркотики с парнем сделали

    d_fomenok, 28 Декабря 2015

    Комментарии (0)
  11. PHP / Говнокод #19259

    −21

    1. 001
    2. 002
    3. 003
    4. 004
    5. 005
    6. 006
    7. 007
    8. 008
    9. 009
    10. 010
    11. 011
    12. 012
    13. 013
    14. 014
    15. 015
    16. 016
    17. 017
    18. 018
    19. 019
    20. 020
    21. 021
    22. 022
    23. 023
    24. 024
    25. 025
    26. 026
    27. 027
    28. 028
    29. 029
    30. 030
    31. 031
    32. 032
    33. 033
    34. 034
    35. 035
    36. 036
    37. 037
    38. 038
    39. 039
    40. 040
    41. 041
    42. 042
    43. 043
    44. 044
    45. 045
    46. 046
    47. 047
    48. 048
    49. 049
    50. 050
    51. 051
    52. 052
    53. 053
    54. 054
    55. 055
    56. 056
    57. 057
    58. 058
    59. 059
    60. 060
    61. 061
    62. 062
    63. 063
    64. 064
    65. 065
    66. 066
    67. 067
    68. 068
    69. 069
    70. 070
    71. 071
    72. 072
    73. 073
    74. 074
    75. 075
    76. 076
    77. 077
    78. 078
    79. 079
    80. 080
    81. 081
    82. 082
    83. 083
    84. 084
    85. 085
    86. 086
    87. 087
    88. 088
    89. 089
    90. 090
    91. 091
    92. 092
    93. 093
    94. 094
    95. 095
    96. 096
    97. 097
    98. 098
    99. 099
    100. 100
    if($_REQUEST['id'] == "1"){ 
    $page = "app1"; 
    include "header.php"; 
    include "footer.php"; 
    } 
    elseif($_REQUEST['id'] == "2"){ 
    $page = "app2"; 
    include "header.php"; 
    include "footer.php"; 
    } 
    elseif($_REQUEST['id'] == "3"){ 
    
    $page = "app3"; 
    include "header.php"; 
    include "footer.php"; 
    } 
    elseif($_REQUEST['id'] == "4"){ 
    $page = "app4"; 
    include "header.php"; 
    include "footer.php"; 
    } 
    elseif($_REQUEST['id'] == "5"){ 
    $page = "app5"; 
    include "header.php"; 
    include "footer.php"; 
    } 
    elseif($_REQUEST['id'] == "6"){ 
    $page = "app6"; 
    include "header.php"; 
    include "footer.php"; 
    } 
    elseif($_REQUEST['id'] == "7"){ 
    $page = "app7"; 
    include "header.php"; 
    include "footer.php"; 
    } 
    elseif($_REQUEST['id'] == "8"){ 
    $page = "app8"; 
    include "header.php"; 
    include "footer.php"; 
    } 
    elseif($_REQUEST['id'] == "9"){ 
    $page = "app9"; 
    include "header.php"; 
    include "footer.php"; 
    } 
    elseif($_REQUEST['id'] == "10"){ 
    $page = "app10"; 
    include "header.php"; 
    include "footer.php"; 
    }
    elseif($_REQUEST['id'] == "11"){ 
    $page = "app11"; 
    include "header.php"; 
    include "footer.php"; 
    } 
    elseif($_REQUEST['id'] == "12"){ 
    $page = "app12"; 
    include "header.php"; 
    include "footer.php"; 
    } 
    elseif($_REQUEST['id'] == "13"){ 
    $page = "app13"; 
    include "header.php"; 
    include "footer.php"; 
    } 
    elseif($_REQUEST['id'] == "14"){ 
    $page = "app14"; 
    include "header.php"; 
    include "footer.php"; 
    }
    elseif($_REQUEST['id'] == "15"){ 
    $page = "app15"; 
    include "header.php"; 
    include "footer.php"; 
    
    } 
    elseif($_REQUEST['id'] == "16"){ 
    $page = "app16"; 
    include "header.php"; 
    include "footer.php"; 
    } 
    elseif($_REQUEST['id'] == "17"){ 
    $page = "app17"; 
    include "header.php"; 
    include "footer.php"; 
    } 
    elseif($_REQUEST['id'] == "18"){ 
    $page = "app18"; 
    include "header.php"; 
    include "footer.php"; 
    } 
    elseif($_REQUEST['id'] == "19"){ 
    $page = "app19"; 
    include "header.php"; 
    include "footer.php"; 
    } 
    elseif($_REQUEST['id'] == "20"){ 
    $page = "app20"; 
    include "header.php";  include "footer.php";  }

    Без комментариев

    d_fomenok, 28 Декабря 2015

    Комментарии (12)