回应使用MySQL从数据库中提取数据的按钮

时间:2014-12-03 16:20:58

标签: php jquery mysql

我有引号或问题的问题  语法,我不完全确定。

以下是代码:

<div class="pagination btn-group" id="items">
                    <? $sql = "SELECT itemname FROM items ORDER BY itemname ASC";
                    $result = mysql_query($sql);

                    $id = $row['id'];
                    $itemname = $row['itemname'];
                    $price = $row['price'];

                    while ($row = mysql_fetch_array($result))
                    {
                        echo "<button class='btn btn-medium highlight-color-0' id=$id itemname=$itemname price=$price><div class='btn-image gears'></div><span class='btn-text'>$itemname</span>";
                    }

                    echo "</button>"; ?>
                </div>

然后我使用以下代码在jQuery中调用它:

$('.pagination btn-group').click(function()
                    {
                        id = $(this).attr('id');
                        name = $(this).attr('itemname');
                        price = $(this).attr('price');
                    });

然而,我似乎得到了不明确的结果?任何帮助将不胜感激

1 个答案:

答案 0 :(得分:1)

你应该把下面的行放在while循环中

$id = $row['id'];
$itemname = $row['itemname'];
$price = $row['price'];

应该像

while ($row = mysql_fetch_array($result)) {
$id = $row['id'];
$itemname = $row['itemname'];
$price = $row['price'];

echo "<button class='btn btn-medium highlight-color-0' id=$id itemname=$itemname price=$price><div class='btn-image gears'></div><span class='btn-text'>$itemname</span>";
}