Id db satırları Ederken ama geriye doğru

2 Cevap php

Ben Linkler oylama sitesi, bağlantı ikinci kez oy sonra formül ok çalışır inşa ediyorum, sorun bağlantı sadece 1 oyu vardır ne zaman eski den yeni için, geriye gösterir olmasıdır.

Ne istiyorum yeni gelen eski göstermek için bir oy ile bağlantıları içindir. Bu ön sayfa bağlantıları çağıran satırı:

$articles = Article::getAll("order by ranking desc limit $offset, $num_items");

Bu GetAll fonksiyon kodu:

static function getAll($conditions = ' ')
    {
        /* Retrieve all the records from the
         * database according subject to
         * conditions
         */

        $db = null;
        $results = null;
        $records = array();
        $query = "select id, created, modified, username, url, title, description, points, ranking from articles $conditions";
        try
        {
            $db = parent::getConnection(); 
            $results = parent::execSql($query);

            while($row = $results->fetch_assoc())
            {
                $r_id = $row['id'];
                $r_created = $row['created'];
                $r_modified = $row['modified'];

                $r_title = $row['title'];
                $r_description = $row['description'];

                if(!get_magic_quotes_gpc())
                {
                    $r_title = stripslashes($r_title);
                    $r_description = stripslashes($r_description);
                }

                $r_url = $row['url'];
                $r_username = $row['username'];
                $r_points = $row['points'];
                $r_ranking = $row['ranking'];

                $article = new Article($r_title, $r_description , $r_url, $r_username, $r_created, $r_modified);
                $article->id = $r_id;
                $article->points = $r_points;
                $article->ranking = $r_ranking;
                $records[] = $article;
            }
            parent::closeConnection($db);
        }
        catch(Exception $e)
        {
            throw $e;
        }

        return $records;
    }

Herkes yardımcı olabilir ben bunu takdir ediyorum.

2 Cevap

Ben yeni ilk tarafından sipariş linkler istiyorsanız o zaman azalan sırayla "yaratılmış" sütun eklemek zorunda sadece, David diyor ne yapacağız:

$articles = Article::getAll("order by ranking desc, created DESC limit $offset, $num_items");

Ne order hükmüne created tarih ekleme hakkında?

$articles = Article::getAll("order by ranking desc, created desc limit $offset, $num_items");