有一个名为“myTable”的表,其中包含列 - MyFactor1、MyFactor2 和 MyFactor3。我想获取这些列名,但现在它只返回“MyFactor1”。我试过mysql_fetch_array/assoc/object,但它们不起作用。你有什么想法可以解决这个问题吗?提前致谢。这是我的代码:
<?php
$aaa = mysql_query("select column_name from `information_schema`.`columns`
where `table_schema` = 'myDB' and `table_name` in ('myTable')");
foreach ($bbb = mysql_fetch_row($aaa) as $taxokey => $taxovalue) {
?>
<option value="<?php print($taxokey);?>"><?php print($taxovalue);?></option>
<?php
}
?>