MySQL查询只循环一次

时间:2015-11-07 04:40:16

标签: php jquery mysql

我的php函数只检索并回显一条信息。当我添加30的限制时,它应该使用不同的信息集回显30次。

我正在尝试编辑的网页如下: http://rocketleaguelobby.com/?key=65d9c17e957870ee15161959b2c1dedb&p=/matches

My PHP Code:

<?php
// Connect to the database //
require_once($_SERVER['DOCUMENT_ROOT'].'/inc/dbconnect.php');

// Send the Query //
$query = "SELECT * FROM  `bets` WHERE `public` = '1' ORDER BY `betTime` LIMIT 0 , 30";
$result = mysqli_query($connection, $query);

if (mysqli_num_rows($result) == 0) {
    // If no results were found //
    echo '<span style="font-style: italic;opacity: 0.8;">No Bet History Found</span>';
} else {
    // Echo each bet history found //
    while($bet = mysqli_fetch_assoc($result)) {
        // For every bet, get info about the user //
        $query = "SELECT `steamName`, `steamAvatar` FROM `users` WHERE `steamID` = '".$bet['steamID']."' LIMIT 1";
        $result = mysqli_query($connection, $query);
        while ($user = mysqli_fetch_assoc($result)) {
            $query = "SELECT `teamShort` FROM `teams` WHERE `id` = '".$bet['betTeam']."' LIMIT 1";
            $result = mysqli_query($connection, $query);
            $betTeam = mysqli_fetch_assoc($result);
            $timeAgo = time() - $bet['betTime'];
            if ($timeAgo < 60) {
                // Seconds //
                if ($timeAgo >= 2) {
                    $timeAgo .= " Seconds Ago";
                } else {
                    $timeAgo .= " Second Ago";
                };
            } elseif ($timeAgo >= 60 & $timeAgo < 3600) {
                // Minutes //
                $timeAgo = round($timeAgo / 60);
                if ($timeAgo >= 2) {
                    $timeAgo .= " Minutes Ago";
                } else {
                    $timeAgo .= " Minute Ago";
                };
            } elseif ($timeAgo >= 3600 & $timeAgo < 86400) {
                // Hours //
                $timeAgo = $timeAgo / 60;
                $timeAgo = round($timeAgo / 60);
                if ($timeAgo >= 2) {
                    $timeAgo .= " Hours Ago";
                } else {
                    $timeAgo .= " Hour Ago";
                };
            } elseif ($timeAgo >= 86400 & $timeAgo < 604800) {
                // Days //
                $timeAgo = $timeAgo / 60;
                $timeAgo = $timeAgo / 60;
                $timeAgo = round($timeAgo / 24);
                if ($timeAgo >= 2) {
                    $timeAgo .= " Days Ago";
                } else {
                    $timeAgo .= " Day Ago";
                };
            } elseif ($timeAgo >= 604800 & $timeAgo < 2628000) {
                // Weeks //
                $timeAgo = $timeAgo / 60;
                $timeAgo = $timeAgo / 60;
                $timeAgo = $timeAgo / 24;
                $timeAgo = round($timeAgo / 7);
                if ($timeAgo >= 2) {
                    $timeAgo .= " Weeks Ago";
                } else {
                    $timeAgo .= " Week Ago";
                };
            } elseif ($timeAgo >= 2628000) {
                // Months //
                $timeAgo = $timeAgo / 60;
                $timeAgo = $timeAgo / 60;
                $timeAgo = $timeAgo / 24;
                $timeAgo = $timeAgo / 365;
                $timeAgo = round($timeAgo * 12);
                if ($timeAgo >= 2) {
                    $timeAgo .= " Months Ago";
                } else {
                    $timeAgo .= " Month Ago";
                };
            };
            echo '<div class="feed-post"><a href="http://steamcommunity.com/profiles/'.$bet['steamID'].'"><div class="steam-img" style="background-image: url('.$user['steamAvatar'].');"></div><span class="steam-name" title="'.$user['steamName'].'">'.$user['steamName'].'</span></a> bet <span class="bet-amount">$'.$bet['betAmount'].'</span> on <span class="bet-on">'.$betTeam['teamShort'].'</span><br><span class="bet-time">'.$timeAgo.'</span></div>';
        };
    };
};
mysqli_close($connection);
?>

我的JavaScript / jQuery代码:

$("#betHistory").load('/inc/getBets.php');

我正在努力获得您之前在我发送的网站链接上看到的30个投注。

现在,只有在数据库中有多个投注已经有多次投注,它只能回复1次之前的赌注。

2 个答案:

答案 0 :(得分:0)

您有多个$result =语句。第二个和第三个语句正在替换先前语句的内容。将它们更改为不同的名称,例如$ result1,$ result2和$ result3,这应该可以解决您的问题。

您还可以在程序的相应部分中尝试print_r($bet);print_r($user);,以查看这些变量的内容。

答案 1 :(得分:0)

您确实为每个查询使用 $ result 。通过为每个查询使用单独的变量,您将解决问题。

我根据以下内容更新了您的代码:

<?php
// Connect to the database //
require_once($_SERVER['DOCUMENT_ROOT'].'/inc/dbconnect.php');

// Send the Query //
$query = "SELECT * FROM  `bets` WHERE `public` = '1' ORDER BY `betTime` LIMIT 0 , 30";
$betsResult = mysqli_query($connection, $query);

if (mysqli_num_rows($betsResult) == 0) {
    // If no results were found //
    echo '<span style="font-style: italic;opacity: 0.8;">No Bet History Found</span>';
} else {
    // Echo each bet history found //
    while($bet = mysqli_fetch_assoc($betsResult)) {
        // For every bet, get info about the user //
        $query = "SELECT `steamName`, `steamAvatar` FROM `users` WHERE `steamID` = '".$bet['steamID']."' LIMIT 1";
        $usersResult = mysqli_query($connection, $query);
        while ($user = mysqli_fetch_assoc($usersResult)) {
            $query = "SELECT `teamShort` FROM `teams` WHERE `id` = '".$bet['betTeam']."' LIMIT 1";
            $teamsResult = mysqli_query($connection, $query);
            $betTeam = mysqli_fetch_assoc($teamsResult);
            $timeAgo = time() - $bet['betTime'];
            if ($timeAgo < 60) {
                // Seconds //
                if ($timeAgo >= 2) {
                    $timeAgo .= " Seconds Ago";
                } else {
                    $timeAgo .= " Second Ago";
                };
            } elseif ($timeAgo >= 60 & $timeAgo < 3600) {
                // Minutes //
                $timeAgo = round($timeAgo / 60);
                if ($timeAgo >= 2) {
                    $timeAgo .= " Minutes Ago";
                } else {
                    $timeAgo .= " Minute Ago";
                };
            } elseif ($timeAgo >= 3600 & $timeAgo < 86400) {
                // Hours //
                $timeAgo = $timeAgo / 60;
                $timeAgo = round($timeAgo / 60);
                if ($timeAgo >= 2) {
                    $timeAgo .= " Hours Ago";
                } else {
                    $timeAgo .= " Hour Ago";
                };
            } elseif ($timeAgo >= 86400 & $timeAgo < 604800) {
                // Days //
                $timeAgo = $timeAgo / 60;
                $timeAgo = $timeAgo / 60;
                $timeAgo = round($timeAgo / 24);
                if ($timeAgo >= 2) {
                    $timeAgo .= " Days Ago";
                } else {
                    $timeAgo .= " Day Ago";
                };
            } elseif ($timeAgo >= 604800 & $timeAgo < 2628000) {
                // Weeks //
                $timeAgo = $timeAgo / 60;
                $timeAgo = $timeAgo / 60;
                $timeAgo = $timeAgo / 24;
                $timeAgo = round($timeAgo / 7);
                if ($timeAgo >= 2) {
                    $timeAgo .= " Weeks Ago";
                } else {
                    $timeAgo .= " Week Ago";
                };
            } elseif ($timeAgo >= 2628000) {
                // Months //
                $timeAgo = $timeAgo / 60;
                $timeAgo = $timeAgo / 60;
                $timeAgo = $timeAgo / 24;
                $timeAgo = $timeAgo / 365;
                $timeAgo = round($timeAgo * 12);
                if ($timeAgo >= 2) {
                    $timeAgo .= " Months Ago";
                } else {
                    $timeAgo .= " Month Ago";
                };
            };
            echo '<div class="feed-post"><a href="http://steamcommunity.com/profiles/'.$bet['steamID'].'"><div class="steam-img" style="background-image: url('.$user['steamAvatar'].');"></div><span class="steam-name" title="'.$user['steamName'].'">'.$user['steamName'].'</span></a> bet <span class="bet-amount">$'.$bet['betAmount'].'</span> on <span class="bet-on">'.$betTeam['teamShort'].'</span><br><span class="bet-time">'.$timeAgo.'</span></div>';
        };
    };
};
mysqli_close($connection);
?>