我需要您帮助我从我的数据库中显示一些逗号分隔的条目。
我的主表架构看起来像这样
|---|----------|-----------|----------------------------|
|id | tab1 | tab2 | tab3 |
|---|----------|-----------|----------------------------|
|1 | state1 | A-North | constA1,constA2,constA3 |
|2 | state2 | B-South | constB1,constB2,constB3 |
---------------------------------------------------------
查询我正在努力工作
$query = mysql_query("SELECT * FROM `main` WHERE `tab1` = '$tab1'")
or die(mysql_error());
while($row=mysql_fetch_array($query)){
$tab3 = explode(",", $row['tab3']);
echo $tab3."<br>";
}
我想从数据库中显示什么
A-North B-South
---------------------
constA1 constB1
constA2 constB2
constA3 constB3
运行该查询时遇到的错误是 "Array" 。当我从 phpMyAdmin 运行相同的代码时,我得到了所需的行(结果)。