Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I set $sections up so it works outside of the while loop?

while($sections = mysql_fetch_array($query)) {
        $section_name = $sections['location'];
        $sections[$section_name] = $sections['content'];
        echo $sections['main'];
    }

$sections['main'] echoes correctly here, but when I run it further down in the code (outside the while loop) it displays nothing. I assume this is something to do with the scope?

I've tried both $sections = array(); and $sections = ''; prior to the loop. Both don't solve the issue. Thanks.

share|improve this question

1 Answer

up vote 3 down vote accepted

Last iteration would null the $sections variable, thus breaking the while loop.

share|improve this answer
Yep. Fixed by changing the new array name to something else. Thanks. – Sam Jan 20 at 13:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.