日期:2014-05-17  浏览次数:20515 次

如何生成数组
在mysql库中一个表中有这样两个字段,$cont_type,$cont_id,并且各自的记录数都超过一条,如何生成这样一个2维数组呢$tarTree[$cont_type][]=$cont_id;用mysql_fetch_row()吗
数组

------解决方案--------------------

//读取出来之后,生成为二维数组即可,直接贴示例代码
<?PHP
$conn = mysql_connect("localhost", 'root', ''); //如果有密码可以加上
          $tarTree = array();
if($conn)
{
if(mysql_select_db('sql_primary', $conn)) //sql_primary是你的数据库名
{
$sql = "SELECT * FROM customers";//customers替换为你的表即可
$result = mysql_query($sql);
while($row = mysql_fetch_array($result))
{
//echo $row['company']."\r\n";
                                $tarTree[$row['cont_type']][]=$row['cont_id'];
}
mysql_close($conn);
}
}
?>