1. PHP / Говнокод #10534

    +53

    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
    function showDate($date){
    $month=explode('-',$date);
    if($month[1]==01){ $name="января"; }
    if($month[1]==02){ $name="февраля"; }
    if($month[1]==03){ $name="марта"; }
    if($month[1]==04){ $name="апреля"; }
    if($month[1]==05){ $name="мая"; }
    if($month[1]==06){ $name="июня"; }
    if($month[1]==07){ $name="июля"; }
    if($month[1]==08){ $name="августа"; }
    if($month[1]==09){ $name="сентября"; }
    if($month[1]==10){ $name="октября"; }
    if($month[1]==11){ $name="ноября"; }
    if($month[1]==12){ $name="декабря"; }
    $rd=$month[2]." ".$name." ".$month[0];
    return $rd;
    }

    BiggestFox, 03 Июня 2012

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

    +56

    1. 1
    2. 2
    3. 3
    4. 4
    5. 5
    6. 6
    7. 7
    8. 8
    foreach($succes_type as $value) {
    	if (strcasecmp($typefile, $value) == 0) $resultat = 1;
    }
    		
    # Проверка загружаемого
    if($resultat != 1 OR $resultat == null OR $resultat == 0) {
    	...
    }

    $resultat выше не определялась...

    nethak, 03 Июня 2012

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

    +70

    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
    <? // файл data/conf/config.php
    $user = array (
    "0" => array("administrator", "bita98"),
    "1" => array("ml.administrator", "select11"),
    "2" => array("moderator", "argument19")
    );
    ?>
    
    <? // Другой файл, для смены пароля
    $pass = $_POST["pass"];
    $new_pass = $_POST["new_pass"];
    
    $files = file('data/conf/config.php');
    foreach ($files as $key=>$value)
    {
    $files[$key]=str_replace($pass, $new_pass, $value);
    }
    
    $f = fopen("data/conf/config.php","w+");
    foreach ($files as $keys=>$values)
    {
    fwrite($f,$values);
    }
    fclose($f);
    
    echo "<h2>Пароль " . $pass . " пользователя " . $_SESSION["username"] . ", был изменен на " . $new_pass . "</h2>";
    
    $_SESSION['password'] = null;
    $_SESSION['password'] = $new_pass;
    ?>

    Вот как нужно редактировать массивы в исходниках!
    cbr-admin.v2.1.7

    alex322, 02 Июня 2012

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

    +141

    1. 1
    foreach ($collector as $valuev)  {

    Очепятка.

    T_ENGINE, 02 Июня 2012

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

    +62

    1. 1
    2. 2
    3. 3
    4. 4
    5. 5
    6. 6
    7. 7
    <?php
    if($res==true){
    $bool_res=true;
    } else {
    $bool_res=false;
    }
    ?>

    Нашёл в одной малоизвестной CMS.

    BiggestFox, 02 Июня 2012

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

    +74

    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
    <?php
    $fgt1 = file_get_contents('database/get_index.bd');
    $fgt2 = file_get_contents('database/get_admin_index.bd');
    mkdir('../../../news', 0755);
    chmod('../../../news', 0755);
    mkdir('../../../news/admin', 0755);
    chmod('../../../news/admin', 0755);
    $f1 = fopen('../../../news/index.php', 'w+');
    fwrite($f1, $fgt1);
    fclose($f1);
    $f2 = fopen('../../../news/admin/index.php', 'w+');
    fwrite($f2, $fgt2);
    fclose($f2);
    $f3 = fopen('../../../news/news.txt', 'w+');
    fwrite($f3, '');
    fclose($f3);
    
    if(is_dir('../../../news')) {
    if(is_dir('../../../news/admin')) {
    if(file_exists('../../../news/index.php')) {
    if(file_exists('../../../news/news.txt')) {
    if(file_exists('../../../news/admin/index.php')) {
    echo '<br>Модуль новости удачно создан.<br>';
    echo '<head><META HTTP-EQUIV="REFRESH" CONTENT="3; URL=../../modules.php?management=news"></head>';
    }else{ $x1="none"; }
    }else{ $x2="none"; }
    }else{ $x3="none"; }
    }else{ $x4="none"; }
    }else{ $x5="none"; }
    if($x1 == "none" || $x2 == "none" || $x3 == "none" || $x4 == "none" || $x5 == "none") {
    echo '<br>Ошибка при создании модуля новостей. Удалите модуль и установите еще раз.<br>';
    }

    Мои глаза!!!
    Последняя новость на главной странице с ресурса с этой CMS :
    "Привет. Если уж ты сюда зашел, то задумайся, не просто же так?? Может чем помочь хочешь?? Или зашел просто так? Если просто так, то тебе не чего здесь делать!
    Читайте далее... "
    Примечательно, но "Читайте далее" не является гиперссылкой.

    пруф : http://city.budennovsk.ru/?module=index

    sKaa, 01 Июня 2012

    Комментарии (17)
  7. PHP / Говнокод #10512

    +51

    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
    $result = dbquery(
                "SELECT a.tag_id, a.tag_name, a.tag_type, a.tag_tags, u.article_id, u.article_cat, u.article_7, u.article_6, u.article_8, u.article_subject, u.article_snippet  
    			FROM ".DB_TAGS." a
    			LEFT JOIN ".DB_ARTICLES." u ON u.article_id=a.tag_name 
    			WHERE a.tag_type = 'A' AND article_draft='0'
    			ORDER BY article_datestamp 
    			DESC");
    
    if (dbrows($result)) {
    while ($data = dbarray($result)) {
    
      if ($data['tag_tags']) {
    		$tags = explode(", ", $data['tag_tags']);
    		foreach ($tags as $values) {
    		
    		if ($values == $tagname) {
    		     echo "<tr><td class='tbl1'>";
    		     echo "Статья: <a href='".BSFURL.article($data['article_id'])."' title='".$data['article_subject']."' class='side'><strong>".$data['article_subject']."</strong></a>"; if ($data['article_6']) { echo" (Язык: <b>".$data['article_6']."</b>) "; } if ($data['article_7']) { echo"(Тип: <b><a href='".BSFURL.articlesTypes($data['article_8'])."'>".$data['article_7']."</a></b>)";} echo"\n<br />";
    		     echo nl2br(parsesmileys(parseubb($data['article_snippet'])))."<hr /></td>\n</tr>\n";
    			 }
    		   }
    		 }
    }
     }

    GggTtt, 01 Июня 2012

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

    +49

    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
    /* КОСТЫЛИ ВЫ МОИ КОСТЫЛИ... */
    function safesql( $source )
     {
    	return @mysql_real_escape_string ($source);
    }
    function get_row($query_id = '')
    {
    	if ($query_id == '') $query_id = $this->lastResult;
    	return mysql_fetch_assoc($query_id);
    }
    ///------------------------- Немного в другом месте ----------------------///
    if (!is_null(Registry::get('database')->fetchNextObject()) or $admin)
    {
    	Registry::get('database')->execFormatSafe("DELETE FROM `%scomment` WHERE `_id` = '%s'", $pref, $id, $message);
    }
    else
    	return $errmess = "что то не так";

    Стыдно. Второй кусок кода мой. Как же всё меняется. Меньше года прошло

    s1Paris, 01 Июня 2012

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

    +90

    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
    <?PHP
     
    class MVC {
     
    public function Model ($text) {
     
    $text = '<i>' . $text . '</i>';
    return $text;
     
    }
     
    public function View ($text) {
     
    $text = $Child::MakeTextBold($text);
    echo $text;
     
    }
     
    public function Controller () {
     
    $text = 'Some text';
    $new_text = self::Model($text);
    self::View($new_text);
     
    }
     
    }
     
    class NewClass extends MVC {
     
    public function MakeTextBold ($text) {
     
    $text = '<strong>' . $text . '</strong>';
    return $text;
     
    }
     
    }
     
    ?>

    С форума php.su. Там еще есть идеи автора про некий "плагинатор" который включает в себя Котролер "News", Модель "News" и внимание ... News View!!!
    Автор еще хвастается, что пишет CMS, администратор которой будет в праве выбрать чем кэшировать шаблоны, на выбор такие пункты как : Memcache, Xcache, JSON, files... ))
    Массы лулзов ))

    sKaa, 31 Мая 2012

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

    +65

    1. 1
    2. 2
    3. 3
    <?if (strpos($img, 'no_photo') !== false) {} else {?>     
    	  <img title="<?=util::prepareHTML($a_info['cap'])?>" src="<?=$img?>" width="361" height="238" class="clipart-news-l" alt="<?=util::prepareHTML($a_info['cap'])?>" />         
        <?}?>

    no comment.

    nethak, 31 Мая 2012

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