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

    Всего: 13

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

    −19

    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
    $list = array(
    1 => "panel1",
    2 => "panel3",
    3 => "opt",
    4 => "listBox1",
    );
    //-----------------------------
    $x = $list[1];
    $dev_w = file_get_contents ("dev/".$x."_w.ini");
    c($list[1])->w = $dev_w;
    $dev_h = file_get_contents ("dev/".$x."_h.ini");
    c($list[1])->h = $dev_h;
    
    $x = $list[2];
    $dev_w = file_get_contents ("dev/".$x."_w.ini");
    c($list[2])->w = $dev_w;
    $dev_h = file_get_contents ("dev/".$x."_h.ini");
    c($list[2])->h = $dev_h;
    
    $x = $list[3];
    $dev_w = file_get_contents ("dev/".$x."_w.ini");
    c($list[3])->w = $dev_w;
    $dev_h = file_get_contents ("dev/".$x."_h.ini");
    c($list[3])->h = $dev_h;
    
    $x = $list[4];
    $dev_w = file_get_contents ("dev/".$x."_w.ini");
    c($list[4])->w = $dev_w;
    $dev_h = file_get_contents ("dev/".$x."_h.ini");
    c($list[4])->h = $dev_h;

    Запись в текстовые файлы информацию о позиции объектов (X и Y)

    NodnolStudio, 24 Сентября 2016

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

    −17

    1. 1
    2. 2
    3. 3
    4. 4
    5. 5
    6. 6
    7. 7
    8. 8
    9. 9
    $chat = c("memo1");
    $send = c("memo2")->text;
    $name = c("edit1")->text;
    $send1 = file_get_contents ("data/send.txt");
    $send1 = str_replace ("NAME",$name,$send1);
    $send1 = str_replace ("SEND",$send,$send1);
    $send1 = "".$send1;
    file_put_contents ("data/chat.txt", $send1, FILE_APPEND | LOCK_EX);
    $chat->text = file_get_contents ("data/chat.txt");

    Говно-чатик

    NodnolStudio, 23 Сентября 2016

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

    −37

    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
    $select = c("listBox1")->items->selected;
    if ($select != ""){
    $dir = file_get_contents ("programs/".$select."/data.ini");
    eval ($dir);
    c("program")->w = $data[W];
    c("program")->h = $data[H]+32;
    c("label_prog")->caption = $data[NAME];
    $count = $data[OBJS];
    while ($x != $count){
    $x = $x+1;
    $src = $data[OBJ.$x];
    $src = "programs/".$select."/".$src;
    $src = file_get_contents ($src);
    eval ($src);
    }
    }

    NodnolStudio, 22 Сентября 2016

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