Jump to content

Loops and Classes


Zypherone

Recommended Posts

I am making a template system and everything seems to be going well up until I have to loop in a variable where things starts to go weird. I need ideas on how to solve this.

 

It is not picking up variables where it changes within the loop.

 

Ie...

 

for ($i=0;$i<3; $i++) {
$body->loop_blocks('test_area', array(
	"TEST"	=> $i,
	"TEST2"	=> $test2)
);
}

 

It picks up TEST2 variable as it remains constant, but TEST variable remains at 0.

 

function loop_blocks($blockname, $array = array()) {

$this->$_blockdata[$blockname . "."] = $array;

foreach ($this->$_blockdata[$blockname . "."] as $tags => $data) {
	$this->_looparray[$blockname . "."] = ereg_replace("{" . $tags . "}", $data, $this->_looparray[$blockname . "."]);
}

return true;
}

 

$this->_looparray[$blockname . "."] is where a particular block of HTML Code needs to be repeated for a loop.

 

Any thoughts?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.