首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

怎么生成数组

2013-08-29 
如何生成数组在mysql库中一个表中有这样两个字段,$cont_type,$cont_id,并且各自的记录数都超过一条,如何生

如何生成数组
在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);
}
}
?>

热点排行