连接分配"。=" for While Loop

时间:2018-03-16 18:45:23

标签: php

知道如何使用Concatenation assignment。= for While Loop?

<?php
$Tag = '';
while($row = mysqli_fetch_array($result)) {
    $Tag .= $row['name'];       
} 
echo $Tag;

我要做的是获得类似Tag1 Tag2 Tag3的回声结果...... 但相反,我只得到最后一个tag3,而不是所有

知道我做错了吗?

1 个答案:

答案 0 :(得分:-1)

我假设在你的while循环之前声明了$ Tag。所以尝试使用

while($row = mysqli_fetch_assoc($result)) {