So I have the following:
$i = 0;
$records = mysql_num_rows($sections_query);
$row_sections = mysql_fetch_array($sections_query);
foreach ($row_sections as $value) {
echo $value . "<br />";
}
The value of $records becomes 4 after execution and the DB has 2 columns per row. The first column value is 'section_id' and the second is 'section_name'.
I want to write a loop that will print out the value of 'section_name' like-
echo "<h3>" . $row_sections[section_name]; . "</h3>";
within the loop, so basically I'll have 3 h3's each containing the 4 different values in 'section_name'
And maybe foreach() isn't the best loop to use? Anyway, I'm confused.
Hope that makes sense, and thanks in advance for the help!
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…