S
S
Sergey Defactov2017-02-12 08:40:00
PHP
Sergey Defactov, 2017-02-12 08:40:00

Why is it showing only 1 entry?

function Wo_GetPromotedPost() {
    global $wo, $sqlConnect;
    $year           = date("Y");
    $type_table     = T_POSTS;
    $logged_user_id = Wo_Secure($wo['user']['user_id']);
    $query_one      = mysqli_query($sqlConnect, "SELECT `id` FROM {$type_table} WHERE `boosted` = '1' AND `user_id` NOT IN (SELECT `blocked` FROM " . T_BLOCKS . " WHERE `blocker` = '{$logged_user_id}') AND `user_id` NOT IN (SELECT `blocker` FROM " . T_BLOCKS . " WHERE `blocked` = '{$logged_user_id}') ORDER BY RAND() LIMIT 1");
    $fetched_data   = mysqli_fetch_assoc($query_one);
    if (count($fetched_data) > 0) {
        $post = Wo_PostData($fetched_data['id']);
        if (is_array($post)) {
            return $post;
        }
    } else {
        return array();
    }
}

Why is only 1 record displayed when the page is refreshed, it changes, how to make it select all records at once

Answer the question

In order to leave comments, you need to log in

2 answer(s)
A
Alexander Pushkarev, 2017-02-12
@AXP-dev

You stand LIMIT 1and therefore one entry

I
Ivan Koryukov, 2017-02-12
@MadridianFox

mysqli_fetch_assoc returns a single row of the query result as an associative array.
The next time this function is called, it will return the next line of the query result.
If there are no more lines as a result, the function will return false;
As a result, you need to call this function in a loop.

$query_result  = mysqli_query($sqlConnect, "select ...");
while($row = mysqli_fetch_assoc($query_result)){
    //...
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question