Skip array in PHP

I have an array that I created that consists of sections and questions. How can I scroll through sections and display the nested questions of each section.

This is how I create an array

$db = db_open(); $query = "SELECT * FROM assessment_selections WHERE assessment_id = '".$annual_assessment["id"]."' AND selection = '1' ORDER BY timestamp ASC"; $result = db_query($db, $query); $result = db_fetch_all($result); if (!is_array) $result = array(); foreach($result as $row) { $section[$row['section_id']][$row['question_id']] = $row; } 

Here is an array

 Array ( [1] => Array // Section 1 ( [1] => Array // Question 1 ( [assessment_selection_id] => 70 [assessment_id] => 32 [section_id] => 1 [question_id] => 1 [selection] => 1 [timestamp] => 1368172762 ) ) [2] => Array // Section 2 ( [3] => Array // Question 3 ( [assessment_selection_id] => 68 [assessment_id] => 32 [section_id] => 2 [question_id] => 3 [selection] => 1 [timestamp] => 1368166250 ) ) [3] => Array // Section 3 ( [4] => Array // Question 4 ( [assessment_selection_id] => 69 [assessment_id] => 32 [section_id] => 3 [question_id] => 4 [selection] => 1 [timestamp] => 1368172690 ) ) [4] => Array // Section 4 ( [5] => Array // Question 5 ( [assessment_selection_id] => 71 [assessment_id] => 32 [section_id] => 4 [question_id] => 5 [selection] => 1 [timestamp] => 1368174153 ) ) ) 



Expected Results (How I would like to be able to repeat them in PHP)

Section 1

  • Question 1
  • Question 4
  • Question 7

Section 2

  • Question 2
  • Question 9

Section 3

  • Question 3
+4
source share
3 answers

You must use this loop.

 foreach($section as $k=>$section) { echo "section $k"; foreach($section as $i=>$question) { echo "question $i ".$question['assessment_id']; //more fields available here } } 
+2
source

Just use foreach again:

 foreach ( $data as $n => $sect) { echo "Section $n<br>"; foreach ($sect as $q => $qdata) { echo " -> Question $q<br>"; // ... do something } } 
+2
source
 foreach($section as $key => $value) { echo "Section ".$key; foreach($value as $key => $value) { echo "Question ".$key; } } 
+1
source

Source: https://habr.com/ru/post/1480068/


All Articles