Log in

View Full Version : Array and foreach



suge
09-05-2010, 04:28 PM
Hi guys,

Having a bit of trouble getting this to work. I should say before I start that im a rookie at PHP.

Basically this is the code I have


{counter start=0 print=false name=competcount}
{foreach item=compet from=$person.competition}

<img src="./bargraph/bar.php?value={$person.lineup[$compet.id].titular}&max={$club.matchsplayed[$compet.id].nummatchs}&info" />

The problem lies with the $club array not being defined
$club.matchsplayed[$competition.id].nummatchs

How do I set up multiple arrays with foreach? Am I even in the right ball park with this?

crobinson42
09-05-2010, 10:34 PM
suge,

i'm stuck on something similar. i have two form entries on a page that input into an array, but i'm having trouble seperating the array into sections on the next page.

I've been looking into

array_slice & array_merge... i think this might help you.. good luck