Fruct0se Posted August 14, 2009 Share Posted August 14, 2009 I am pulling a table from my database and I would like to store all of the information into a single array. The table would look something like this: table name: taxonomy IDCategoryidHidW 1Standard100300 2Standard200320 3Standard300390 4Other1030 5Other23020 6Other33010 I would like to store all of this information into a single array something like: $result = $db->query("Select * from taxonomy"); while ($i = $db->fetch_row($result)){ extract($i); //!*****Want to store all the data into a single array here***** } Quote Link to comment https://forums.phpfreaks.com/topic/170193-solved-complicated-array-help/ Share on other sites More sharing options...
kratsg Posted August 14, 2009 Share Posted August 14, 2009 <?php $holder = array(); $looper = 0; $result = $db->query("Select * from taxonomy"); while ($i = $db->fetch_row($result)){ foreach($i as $key=>$value){ $holder[$looper][$key] = $value; } $looper++; } ?> This should work pretty nicely. Quote Link to comment https://forums.phpfreaks.com/topic/170193-solved-complicated-array-help/#findComment-897793 Share on other sites More sharing options...
Fruct0se Posted August 14, 2009 Author Share Posted August 14, 2009 Thanks, can you show me an easy way to show all the data in the array? Quote Link to comment https://forums.phpfreaks.com/topic/170193-solved-complicated-array-help/#findComment-897798 Share on other sites More sharing options...
kratsg Posted August 14, 2009 Share Posted August 14, 2009 print_r(array); Quote Link to comment https://forums.phpfreaks.com/topic/170193-solved-complicated-array-help/#findComment-897801 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.